开发者

Rendering Nested JSON String in Listgrid in smartGWT

开发者 https://www.devze.com 2023-01-04 08:22 出处:网络
I have a clarification in loading JSON String into Listgrid in GWT. I have implemented GWT-RPC, so from server side JSON string will be returned and have mapped it to grid fields properly.

I have a clarification in loading JSON String into Listgrid in GWT. I have implemented GWT-RPC, so from server side JSON string will be returned and have mapped it to grid fields properly.

My JSON String looks like

return "[ { user: { User ID: 1, name: abc},

initial:A,

},

{ user: { User ID: 2, name: xyz},

initial:B,

}

]";

The problem now here was initial field gets loaded with A & B . but the nested fields such as User ID & name are not getting loaded.

I have setted value xpath for those fields. but its of no use.

Pls tell me how to render the user id & name fields. thanks in advance

Note: I am processing the JSON String from server like :

where result is the JSON String from server

JavaScriptObject obj=JSON.decode(result开发者_StackOverflow中文版); Record[] record = ListGridRecord.convertToRecordArray(obj);


valueXPath is designed for exactly this use case, but it's only active if you use a DataSource, and you seem to be circumventing the DataSource layer. There is a very simple sample of using a DataSource with JSON and valueXPath here:

http://www.smartclient.com/smartgwt/showcase/#json_integration_category_xpath

Using this approach, you'll be able to delete a bunch of unnecessary GWT-RPC logic.

See also the QuickStart Guide for further information on data binding:

http://blog.isomorphic.com/?p=227

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号