0
votes
1answer
25 views

returning record List in remote procedure calls

i'm using smartGWT mobile as the front end , from the client UI i'm making an rpc call in return as an result i need record List. If i use record List it throws an compilation error ...
0
votes
0answers
203 views

Trying To Save A Foriegn Key Relationship DATASOURCE listgrid SMARTGWT

I would like to know how can I save a foreign Key Relationship Datasource listgrid in SmartGwt? I used a listgrid (Nested Grid) with getExpansionComponent function, but I can't get internal listgrid ...
0
votes
0answers
113 views

chat Screen using smartGwt

i want to develop a chat screen based on topic ,where the topics for the chat are kind of list and when we click on the topic based on the topic clicked the corresponding chatted comments should be ...
1
vote
0answers
96 views

Automatically fetching a specific page in a livegrid smartgwt

I have a live grid of records (datasource bounded), which are contacts. The live grid is paged. I have a problem where i have to show a searched record as selected in this livegrid. On googling i ...
0
votes
0answers
190 views

SmartGWT handling failure for ListGrid addData

I have a ListGrid that is using a JSON rest data source. On the client side the code looks like ListGridRecord record = new ListGridRecord(); // populate the record record... ...
0
votes
3answers
232 views

Communication client-server-client

I have a question about the Communication between a client and a server. I would like to create a GWT application that can do the following: The client A fires an event to the server and the server ...
2
votes
1answer
247 views

GWT RPC doesn't work properly

I'm making RPC in my GWT project and it's running but the data I wanna work with disapper somehow. I am using the localhost as server. I have two classes in the server package: Defences: package ...
0
votes
1answer
558 views

How to use GWT SerializationStreamFactory

I am trying to serialize a object in GWT using SerializationFactory, but I am not able to get it working. Here is the sample code of my POC: import ...
0
votes
1answer
1k views

smartgwt + gwt-rpc or REST + spring

Hi I am currently working on a project and basing my design proposal on a SOA architecture and am including GWT components for UI . I am new to GWT and after reading through a week of posts of GWT and ...
0
votes
3answers
515 views

Online music Streaming with GWT

I need to develop an application that is hosted in Google App Engine and access mysql database that is hosted in separate server which is not enable RMI or tomcat installed. Data(music files) stored ...
11
votes
2answers
4k views

Difference between gwt, gwt-rpc, ext-gwt, smart gwt

I would like to know the difference between GWT, GWT-RPC, EXT-GWT and Smart GWT. Currently, I managed to borrow books on GWT which I understand is just a library designed to facilitate fast and ...
0
votes
2answers
346 views

IE displaying some widgets incorrectly in GWT

I have a strange issue in my GWT app. My application is working fine and looking good in Google Chrome and Firefox. But in IE, I am facing some issues in visual display of widgets. The issues are: ...
0
votes
2answers
7k views

open/save file in smartGWT

I have implemented RPCService, RPCServiceAsync & RPCServieImpl. On clicking a button a service in server side will be called and it will fetch data from DB and file is created. Once the file is ...
1
vote
1answer
2k views

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 ...
9
votes
3answers
2k views

Generating html for SEO

I found this article http://docs.google.com/Doc?id=dcsq25m_04k4cmgfd on generating html on server side for spider. What do you folks think about using this technique to serve different content ...
1
vote
1answer
1k views

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 ...