GWT Selectable Grid - gwt

Does anyone know of a good selectable grid for gwt google web toolkit? I need this functionality ported over for my application. Just for example I would like it work similar to pfselect for the jquery library.
Thanks,

It is on the way in GWT2.1. Currently milestone version is available. Probably you can give a try. I would suggest not to use smartgwt or ext-gwt. Because at initial page load it downloads lots of javascript.
Please have a look into this

You could look at
GWT Incubator ScrollTable (http://collectionofdemos.appspot.com/demo/index.html)
SmartGWT grid (http://code.google.com/p/smartgwt/)
Ext GWT (from Ext-JS)

Related

Which is best for built a web tool in gwt

I am new to GWT. can anyone help me to understand which one is best to built a web tool. Fluid Layout or Fixed layout...?
help me in this...
Thanks,,
This depends on the application you want to create.
I would always go for the flexible layout, if there a no contrary requirements.

How to design the header of a website in GWT without using CSS?

I need to make the header and logo (google Code and Stockwatcher) of the stockwatcher example http://code.google.com/webtoolkit/doc/1.6/tutorial/gettingstarted.html without using CSS or HTML, that is all the code should be in JAVA. Can someone tell me how to do it ?
You should be able to create Panels and place elements in them progmatatically without a problem. But if you add more details to your questions I am sure we can be more helpful.
Also, you are linking to an older version of GWT, you might be helped by using the most recent version:
http://code.google.com/webtoolkit/doc/latest/DevGuide.html
This is probably the section you are looking for:
http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html
But I would recommend using UiBinder where you can, instead of pure Java. It is easier and more flexible that way.
http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html

Is it possible to mix extjs and GWT components?

I am working with GWT2.3 version.I also found ExtJs4 framework very good and want to club the some of component of ExtJs4 in my application(GWT2.3).So I just want to know it is possible to club components of ExtJs4 with GWT application
Thanks in Adcance
Yes it is. Just add .js source to your public folder in /src. Then you can write custom JavaScript as native methods via JSNI. See more in the docs.
Why not use the GWT compatible project? http://www.sencha.com/products/extgwt/
It has the same widget library (afaik) and integrates quite nicely w/ GWT

Wicket DropDown (<select>) like form component that can show images

I'm looking for drop down component that can show images and will hopefully work on most browsers.
There are several extension libraries for wicket, such as wicketstuff-dojo and wiquery. Do any of these have such a component and how well does it integrate into wicket?
As far as I know, there is no ready-to-use wicket extension that does exactly what you want.
I'd recommend using wiquery and writing a custom plugin based on something like Image Dropdown.

GWT/java and javascript

can i design my web pages in html and css instead of java methods and use gwt only in parts of page that i need ajax? and which one is better gwt, extgwt, vaadin(it run apps in server-side.can i also use it in client-side?), etc...? do i also need to know javascript for using gwt?
thanks
can i design my web pages in html and
css instead of java methods and use
gwt only in parts of page that i need
ajax?
Yes, you can. You can create a div on your HTML page and insert your GWT widget there.
which one is better gwt, extgwt,
vaadin(it run apps in server-side.can
i also use it in client-side?)
I don't know about vaadin but Ext-GWT is a set of ready made components to use with GWT which make your life easier especially if you want to build an web app that looks and feels like a desktop application.
do i also need to know javascript for
using gwt?
No, it can be useful sometimes but is not necessary.