smartgwt

Integrating smartgwt and web2py.

I'd like to build an application using smartgwt and web2py. I am new to both. Ultimately what I would like to do is display objects obtained from a web2py backend in a smartgwt TileGrid. Can anyone enumerate the broad strokes of what needs to be done? Or point me to any useful resources? Any information that would apply more to django...

Best GWT widget library?

Question for all the GWT gurus out there - which is the best GWT widgets library out there? And why? List based on the answers: Default EXT-GWT GWT Components Library GWT-EXT GWT Widget Library GWTiger Rocket GWT Dojo SmartGWT Vaadin Others ...

The cons and pros of smartGWT

I'm starting work on a smartGWT project in a few days and I'd like to know what kind of experiences you had. To avoid making this a bashing of smartGWT or GWT or a freestyle discussion, I'm going to provide some pointers for the discussion: Do you feel that the provided widgets are integrated well? Is there any widget you miss in parti...

Combining TimeItem and DateItem values

I have to combine the time value for TimeItem and date value from DateItem in smartgwt.In output I want the date object for java.util.Date.I tried to combine these two.I couldnot do that. Sample code is : DateItem date=new DateItem(); TimeItem time=new TimeItem(); DynamicForm form=new DynamicForm(); form.setFields(date,time); // java....

DateChooser cannot change to selected date visuallly in smartgwt

I am using DateChooser in my project.In that after selecting some other date the dateChooser remains in same date(in current date).It is not changing visually.I tried with setData() and redraw() method's also.Still it is not working.I am using smartgwt-1.1 and gwt-1.6.4 version.My sample code is : final DateChooser dateChooser = new Dat...

[ExtJs] Vs [Ext GWT] Vs [SmartGWT]

Hi, I am going to start a new application which mainly consist NavigationPane, Grid, Toolbar. Layout should look like this demo page http://www.gwt-ext.com/demo/ I am quite confused which one to use in terms of writing less code, more performant, etc.. Could someone tell the pros and cons of all these technologies. All the while I cod...

gwt generate html for seo? what do u think?

i found this article http://docs.google.com/Doc?id=dcsq25m_04k4cmgfd . generate html on server side for spider. what do you folks think about using this technique to serve different content depending on user-agent ? any reference articles, u folks wanna share on best way to do seo on gwt? also, i did read up pro gwt2.0 technique, but s...

how to setCookie in gwt client ?

in my servlet, i have this line CookieManager.getRequestCookieValue(request, "app-openid-identifier"); CookieManager.getRequestCookieValue(request, "app-openid-uniqueid"); in my gwt client composite file, how to i set cookie for "app-openid-identifier" and do "get" to call the servlet? ...

SmartGWT ListGrid is slow, but only in Internet Explorer

Hello, we have migrated from gwtext to smartgwt and overall the experience is ok. However, we have big problems with the ListGrid component of SmartGWT. It is very slow if both of the following conditions are met: Internet Explorer is used 5 or more columns the speed will decrease if you add more columns up to the point where the ...

How to implement a Lazy List using SmartGWT and SQL

Hey all, I was trying all of yesterday to try and integrate a SQL Database with SmartGWT for a lazy list but I just couldn't figure out how to implement it. (JavaDoc, and example of a lazy list) What I want to do is create a list of a bunch of "sites" all over the world. The problem is there will probably be about a million of them, s...

SmartGWT TreeGrid Selection

I have a SmartGWT webapp that uses a TreeGrid with a dataSource. I would like this treeGrid to preselect values saved in a cookie. I have gotten the value to be saved in the cookie correctly, however I have tried several different methods of getting the treeGrid to select these values and I can not get it to work. I am attempting to do t...

Is smartclient suitable?

Dear Sir, would you say that SmartClient is suitable when you have thousands of users editing grids? Or will the waiting time for the intended end-users most likely be very long? I have received warnings before that ExtJS would not be suitable. Thank you ...

TinyMCE or SmartGWT Rich Text Editor for my GWT app?

I want to add a rich text editor to my GWT application. TinyMCE is one candidate, and so is the rich text editor in SmartGWT. Do you have any advice about choosing between the two? ...

SmartGWT Calendar Width and Height

I've tried setting an explicit width and height to the calendar widget in the SmartGWT library using calendar.setWidth(500) and calendar.setHeight(400) to no avail. Any ideas why this wouldn't work? Thanks! ...

Is it possible to use Ext GWT and Smart GWT components in the same project?

I want to use ext-gwt in one of my projects but some components of ext-gwt is not enough for me. Smart-Gwt has much more components and I want to use also smart-gwt components in this project. Is it possible? ...

SmartGWT alternatives

I have been using SmartGWT but have run into trouble mixing SmartGWT with other frameworks such as Wicket. Infact it has been a bit of a disaster and I regret going with it in the first place. I do not want this question to turn into any type of flame war, so therefore would just like people to list alternatives and their experience wi...

is smartGWT really as slow as its showcase is?

I've started implementing my web application using smartGWT. Is it really as slow as it is on the showcase? It's practically unreasonably slow. I'm in a new empty project that all it does it display a modal window with a login form in onLoad. this takes about 1 full minute to load. I think it's just waiting for something and then po...

Help Add gwt-connectors into smartgwt

I write a testing class below, but I not able to add it into the com.smartgwt.client.widgets.Window. Anyone can help me on this? Thanks in advanced! package com.smartgwt.sample.showcase.client; import pl.tecna.gwt.connectors.client.ConnectionPoint; import pl.tecna.gwt.connectors.client.Connector; import pl.tecna.gwt.connectors.client...

smartGWT > setting the cursor position in a textItem

I'm using a TextItem in smartGWT and I want to update the cursor position in that text field when a user clicks on some button. is that possible? (btw, in general, is there a text field widget that is not part of the form package in smartGwt?) thanks! ...

How can I make the SmartGWT core smaller?

I have recently written a Hello World application using SmartGWT and noticed that the size of the application is huge. In my case it is over 600kb just for that application. I think that size is obscene so I narrowed the culprit down to two core libraries, ISC_Core and ISC_Foundation which combine for a total size of 649kb. Is there any...