tags:

views:

222

answers:

2

I have a basic GWT Maven project going. I added SmartGWT and started playing around with some widgets and nothing displays correctly. The ListGrid seems to somewhat render but things are off and even data isnt showing up (though the rows respond to indicate there is data within the row). Sorting arrows dont appear but are clickable, and filters are wildy off. Whats causing this. I deleted everything in the .css file.

GWT newbie here.

+1  A: 

Did you add the following to your host html file?

var isomorphicDir = "MODULE_NAME/sc/";

where MODULE_NAME is the name of your GWT module. ie the name you have in your GWT module xml file.

See http://forums.smartclient.com/showthread.php?t=8159#aImages

Sanjiv Jivan
worked thanks!!
Holograham
+1  A: 

fyi the next release of Smart GWT will no longer require users to add the isomorphicDir variable to the host html file.

Sanjiv Jivan