Extjs - 网格的多级 json
我有一个网格,我需要/必须(无论 y)向其发送多级 json。
示例:
{ "root" : [ {
"affiliateId" : 8,
"name" : "Affiliate Name",
"email" : "[email protected]",
"manager" : {
"name" : "I am the manager",
"email" : "[email protected]"
},
} ],
"totalCount" : 1
}
现在,当我构建网格字段时,我想使用更深的项目,例如:
{
name:'manager_email',
header: "Manager",
dataIndex: 'manager.email',/******access a deep level******/
width: 100,
sortable: true,
type:'text'
}
我没有收到错误,只是网格中的空单元格。
谢谢
I have a grid and i need/must (no matter y) to send a multilevel json to it.
example:
{ "root" : [ {
"affiliateId" : 8,
"name" : "Affiliate Name",
"email" : "[email protected]",
"manager" : {
"name" : "I am the manager",
"email" : "[email protected]"
},
} ],
"totalCount" : 1
}
now, when I build the grid fields I want to use the deeper items, for example:
{
name:'manager_email',
header: "Manager",
dataIndex: 'manager.email',/******access a deep level******/
width: 100,
sortable: true,
type:'text'
}
I get no error, just empty cell in the grid.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看
mapping
配置选项 - 像这样定义您的字段:另一个选项可能是这样使用
renderer
:You should look into the
mapping
config option - define your field like this:Another option might be to use a
renderer
this way: