ASP.Net MVC Telerik Grid Master 详细信息自定义图标

发布于 2024-12-11 11:53:12 字数 172 浏览 0 评论 0原文

在 Telerik MVC 网格中。 对于主详细信息,它给出一个三角形图标(当我们单击它时。它会展开网格并显示详细信息)。

我们可以用自定义图标来代替三角形图标吗?

我可以更改图像文件夹中的图像,但它会在整个应用程序中发生变化。

我希望它只改变一页。

有什么想法吗?

In Telerik MVC grid.
for Master Detail it give a Triangle icon(when we click it. it expands the grid and show the Details).

Can we have a custom icon instead of triangle icon.

I can change the image on the image folder but it will change through out the application.

I want it to change only for one page.

Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

洋洋洒洒 2024-12-18 11:53:12

您可以像这样更改 CSS 背景图像:

<style>
.t-hierarchy-cell .t-minus
{
     backgorund-image: url("path_to_new_expand_icon");
} 

.t-hierarchy-cell .t-plus
{
     backgorund-image: url("path_to_new_collapse_icon");
}
</style>

You can change the CSS background-image like this:

<style>
.t-hierarchy-cell .t-minus
{
     backgorund-image: url("path_to_new_expand_icon");
} 

.t-hierarchy-cell .t-plus
{
     backgorund-image: url("path_to_new_collapse_icon");
}
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文