如何更改 TreeGrid 中的叶子图标

发布于 2025-01-03 06:01:38 字数 108 浏览 0 评论 0原文

如何为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野の 2025-01-10 06:01:38

您可以使用 CSS 来实现:

.dojoxGridCell[role="gridcell"][idx="3"]:before
{
  content: url(icon.png);
}

这将在网格单元格中显示 icon.png(由类 dojoxGridCell 和属性 role="gridcell" 指示)在索引 3 的列中。

这是使用生成的内容,因此您可能需要查阅支持矩阵 。如果您需要支持 IE6/IE7,那么您将需要一个后备解决方案,所有其他浏览器都可以。

You can use CSS for that:

.dojoxGridCell[role="gridcell"][idx="3"]:before
{
  content: url(icon.png);
}

This will display icon.png in grid cells (indicated by class dojoxGridCell and attribute role="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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文