Is there any other way to send request data back to the server when calling fetch for listgrid? When I pass data in like the code below, I get really odd values in the server-side like:
{criteria={cwFetchType={java_lang_Object_castableTypeMap$={1=1, 50=1, 51=1, 83=1}}}
I should add that this functionality works if I run the application in GWT hosted mode. Am I doing something wrong? Or does this seem like a GWT bug?
{criteria={cwFetchType={java_lang_Object_castableTypeMap$={1=1, 50=1, 51=1, 83=1}}}
Code:
listGrid.fetchData(null, null,{showPrompt:false,data:{"cwFetchData":"$dfn"}});
Comment