1
vote
1answer
41 views

sending String using servlet while dowloading in GWT

i am using GWT I trying to dowload a file using Servlet. I have fileId on the client side. i have my servlet ready to look for the file using fileId and send back to client. But on the Client ...
1
vote
0answers
50 views

Serializing exception with GXT RPCMAP

I'm heading the following issue SEVERE: Unable to serialize delta request for sessionid [576530C8078FEBD71743551D4417DAD5] java.io.NotSerializableException: com.extjs.gxt.ui.client.data.RpcMap ...
0
votes
0answers
482 views

CheckBoxListViev check few checkbox gwt ext

I am new to GWT and using GWT EXT. I want to create MultiSelectComboBox and I am doing that using the CheckBoxListViewCreator class and it is working perfectly fine. I am calling class using the ...
0
votes
1answer
155 views

Upgrading GWT from 1.7 to 2.0

I am trying to upgrade GWT 1.7.0 to 2.0.0 but I get the following error. Errors in 'jar:file:/C:/src/lib/gxt.jar!/com/extjs/gxt/ui/client/widget/Component.java' As per the below link I did ...
2
votes
0answers
419 views

BrowserChannel$RemoteDeathError: Remote connection lost in GXT

. . . i created a gxt project and i made RPC mechanism for Retrieve data But it works fine at first time even RPC call also. But after that it doesnt while clear cache memmory it works in ...
0
votes
0answers
563 views

ListField displays no ListSTore data Ext GWT

I have an RPC method that returns a raw data from DB. I am trying to fill the lisfield with this data using ListStore. Everything is ok, but when ListField is rendered it have rows, but no displaying ...
0
votes
3answers
975 views

ModelData interface gxt

I'm implementing a server-client data transfering in gxt. So, I have a Bean class and a class that extends BeanModelMarker. Then I fill my bean's fields with data from DB on server. Then I use GWT RPC ...
0
votes
2answers
2k views

GWT RPC and data translating to GXT Grid

I am trying to translate data from server to client (GXT Grid). On the server side I have a List with data and its ok. Then I implement RPC methods and suppose that its ok too. Here is code: ...
2
votes
3answers
2k views

GWT RPC Warning: servlet has mapping, but web.xml has no corresponding mapping

I'm having a strange issue with GWT-RPC. I setup an Async RPC handler that is working fine. But when I run my server (using ant devmode) I get the following warning: [WARN] Module declares a servlet ...
0
votes
1answer
2k views

Ext-GWT TreeGrid indirectly calls a GWT-RPC callback? Why?

I am using GWT-RPC to populate Ext-GWT TreeGrids with data from a server. I am using 4 callbacks to populate 6 TreeGrids. As the callback onSuccess function modifies the TreeGrid by inserting rows, ...
1
vote
7answers
12k views

GWT - GXT - How to get Radio Button Value?

I am using GWT (Google Web Toolkit) 1.5.3 et GXT (ExtJS) 1.2 I just want to create a simple form with some radio buttons generated after a RPC call, to get some values Code: final FormPanel simple = ...