我有一个包含以下记录的Json数据存储
{"resultList":[
{"type":"subscriber",
"subrecord1":[{"dateVal":1390475422000,"typeId":0,"name":"abcd"},
{"dateVal":1390475422567,"typeId":1,"name":"kdjjd"}],
"subrecord2":[{"messageDate":1390475489899,"typeId":0,"location":"delhi"},
{"messageDate":1390485422567,"typeId":1,"location":"pune"},
{"messageDate":1390475498901,"typeId":1,"location":"mumbai"}]
}],"success":true,"total":1,"validationErrors":false}
现在我想在一个网格中显示subrecord1,在另一个网格中显示subrecored2。 Grid1包含列'dateVal','typeId'和'name'。 Grid2包含coulmns的“messageDate”,“typeId”和“location”。
我如何在同一家商店做到这一点?
提前致谢