ExtJS 4 TreeGrid - 从子记录引用父记录
我想制作一个自定义渲染器,其中子记录可以引用父记录中的一些数据。这可能吗?
I'd like to make a custom renderer where a child record can reference some data from the parent record. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的渲染器在存储中传递,所以是的,您可以使用存储中的任何(当前加载的)数据来渲染结果。
所以像这样的东西应该有效(未经测试):
请参阅 http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.column.Column
You renderer gets passed in the store, so yes, you can use any (currently loaded) data from the store to render the result.
So something like this should work (untested):
See http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.column.Column