如何更改 TreeGrid 中的叶子图标
如何为 dojox.grid.TreeGrid / LazyTreeGrid 中的某些列设置图标?
在 dijit.Tree 中,我可以重载 getIconClass 方法来完成此任务。
How can I set an icon for some column in dojox.grid.TreeGrid / LazyTreeGrid ?
In dijit.Tree I can overload getIconClass method to acomplish this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 CSS 来实现:
这将在网格单元格中显示
icon.png
(由类dojoxGridCell
和属性role="gridcell"
指示)在索引 3 的列中。这是使用生成的内容,因此您可能需要查阅支持矩阵 。如果您需要支持 IE6/IE7,那么您将需要一个后备解决方案,所有其他浏览器都可以。
You can use CSS for that:
This will display
icon.png
in grid cells (indicated by classdojoxGridCell
and attributerole="gridcell"
) in column with the index 3.This is using generated content so you might want to consult the support matrix. If you need to support IE6/IE7 then you will need a fallback solution, all other browsers will do fine.