Syncfusion GridGroupingControl,从子节点获取父节点
我使用同步融合 GridGroupingControl,在其上对对象进行数据绑定。该对象包含另一个对象的数组。
人 { 姓名, 姓, 订单[] 所以
在我的 gridgroupingcontrol 中,
Persons
Name | Last
James| Doe
Orders
123524 | 12/15/2010 | stuffs
John | Smith
Orders
545541 | 12/31/2005 | stufffs
当我单击 James Doe 的订单 123524 行时,我想获取父节点 James Doe。
我已经尝试过一切 e.ParentChildTable.getData() e.ParentDisplayElement.getData() e.ParentGroup.getData() e.ParentSection.getData() e.ParentTable.getData() e.ParentTableDescriptor.getData()
大多数方法返回 null...
解决方案是什么?
谢谢你们!
约翰·史密斯
I use the syncfusion GridGroupingControl on which I databind an object. This object contains an array of another objet.
Person {
Name,
Lastname,
Orders[]
}
So in my gridgroupingcontrol I have
Persons
Name | Last
James| Doe
Orders
123524 | 12/15/2010 | stuffs
John | Smith
Orders
545541 | 12/31/2005 | stufffs
When I click on the order 123524 row of James Doe, I want to get the parent node which is James Doe.
I've tried everything like
e.ParentChildTable.getData()
e.ParentDisplayElement.getData()
e.ParentGroup.getData()
e.ParentSection.getData()
e.ParentTable.getData()
e.ParentTableDescriptor.getData()
most of the methods return null...
Whats the solution ?
Thanks guys !
John Smith
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案,这是一个 OMG 解决方案,但它有效!
I found the answer, it's an OMG solution but it works !