ajax toolkit controls grayed out due to designer compatability or framework - ajaxcontroltoolkit

I have converted my project from visual studio 2005 to Visual studio 2012. I am using.Net frmawork version 4.5.and i want to add ajax control toolkit in my project.i have created new control with named ajax and add items from browsing ajax toolkit 4.5.after clicking ok popup is displayed showing controls are added sucessfully but make sure framework version and design compatability.please give me a solution.i have tried all solutions.

I got solution for this issue,Goto property pages and in build option select appropriate version on ajax control toolkit

Related

Browse SAPUI5 source code

I require some information about the SAPUI5 core libraries. I want to read the source code of a particular control, for example sap.m.InputBase. Where can I find the source for this control? I googled it and found it's in the "InputBase.js" file but what steps do I need to follow to see the source code for this file?
Is there a way I can scroll through the controls in the sap.m library and then read the source code for the control?
OpenUI5
Most of the SAPUI5's libraries, which are opensource, can be browsed on GitHub. You can even browse different releases by selecting the respective branch:
Here is an example of InputBase from 1.48.
Or filter by filename.
SAPUI5
Some libraries aren't included in OpenUI5, such as:
sap.ui.comp
sap.ushell
sap.gantt
sap.viz
sap.ui.richtexteditor
In this case, download one of the SAPUI5 packages from here: https://tools.hana.ondemand.com/#sapui5 (Scroll down to "SAPUI5 Runtime"). This also allows us to browse the whole UI5 libraries offline without having to run the app.
it's to distinguish between openui5 and sapui5. openui5 is the open source clone of sapui5. openu5 is free to use. sapui5 is not. openui5 doesn't contain all controls that sapui5 contains. but openui5 contains all the important basic controls. the controls that are in sapui5 included but not in openui5 are controls like charts and smart contorls that e.g. are automatically configured by odata annotations.
find the source code for the most controls of sapui5 and all controls of openui5 in its github repository here. e.g. find the source code for the inputbase control in its github repository here.
find the source code of sapui5 or openui5 which is used by a sapui5 or openui5 application through the use of a debugger tool of a browsers on this sapui5 or openui5 application. e.g. to invoke the debugger tool of the chrome browser please press ctrl + shift + i.
find also the source code for the most controls of sapui5 and all controls of openui5 at the openui5 website here in the downloadable runtime and sdk packages of openui5.
find also the source code for the controls of sapui5 and openui5 the sap development website here in the downloadable runtime and sdk packages of sapui5.

Unable to integrate prime faces components into xhtml using eclipse

1.I am unable to integrate primeface components in palette tool in eclipse Luna.Can you suggest me fine solution for that?
2.when I was trying to drag and drop the primefaces components into xhtml webpage editor or jsp web page editor,its not happening.If at all the primeface components are added to JSP page webpage editor.The component that is dropped in webpage editor its not visible but its effecting the code .
this is the issue
The 'visual' jsf designer in eclipse (or any ide) is of limited use. It can only show basic jsf components and some older RichFaces ones if you install the jboss extensions. Since it is fairly easy to run an embedded container, displaying it in a real browser is the better solution. Automagically reloading a page in the browser when saving in the IDE is possible (search the internet for this)

How to create Eclipse GWT Designer Project, something is off?

After downloading the latest Eclipse (Luna 4.4.1), I installed the GWT / GWT designer plugin.
I concluded I that I am missing WindowsBuilderPro, and so I installed it via Eclipse Help->Install New Software.
Now I want to create a new GTW Designer project, and get the following choices, which I think are wrong:
Tutorials, perhaps older, show the following project choice:
Is my installation messed up? I reversed the installation order, and nothing changed.
Is GWT Designer out of date, should I no longer be using it?
I'm a bit more confused based on your answer (Phil). I found this presentation:
The Future of GWT, 2013 Report
and it shows:
Does GWT Designer still exist (2014) as something separate from UI Binder (I don't really want to do any HTML)?
If not, do I need the WindowBuilder plugin for UIBinder?
You don't directly create a GWT Designer project. Create a "Web application project" as displayed in your first screenshot. Then create a new "UiBinder":
It will create two files: one java file and one .ui.xml file.
When you will open the .ui.xml file, you will have two tabs at the bottom of the window: one for the code, and one for the graphic designer:

Create awt and lcdui custom component visual designer plugin for netbeans/eclipse

I'm trying to create an awt and an lcdui custom component visual designer plugin for Eclipse or NetBeans. Drag and drop functionality should be supported.
I have already found this http://wiki.netbeans.org/JavaMEComponent_VDComponentProject but I get some errors on the way and cannot complete the whole process described.
Any other links for Netbeans case?
I haven't discovered anything concerning Eclipse. Any links please?
Google donated WindowBuilder pro to Eclipse, and it was available in the Indigo release (June 2010). See http://eclipse.org/windowbuilder/ and WindowBuilder Pro>Quick Start.
WindowBuilder comes with a set of toolkits already code that can be installed (Swing, SWT, eRCP, GWT). They are pluggable, so depending on your usecase you might be able to extend one of the existing toolkits or write your own (there must be docs for that somewhere :-)

cant find the create custom widget in the new project

i am new to vaadin and i have installed vaadin eclipse plugin and i cannot find the create custom widget in the File->New project->vaadin
and i cant find create themes etc ..as i see these things in the tutorial video and i cant find the visual editor also in the eclipse and i am using linux (operating system)
Check that you have installed the experimental visual editor like described on http://vaadin.com/eclipse. You can first create a Vaadin project from File->New project -> Vaadin project. You could also try to install the unstable version of the plugin from http://vaadin.com/eclipse/experimental (open URL with Eclipse plugin installer) if the stable one does not work.
Then you can check out the manual on http://vaadin.com/book/-/page/gwt.eclipse.html to get an idea of how to create a custom client side widget using GWT. This is practical if you wish to get some new client side behaviour not found in any existing widget(s).
However, if you just wish to have a new component without any new client side behaviour, you could extend the CustomComponent on the server side (in plain Vaadin, without making GWT components), add some custom logic and perhaps combine a number of existing components to be included. This composite CustomComponent can then be used in code as any other Vaadin component.