在Telerik MVC网格中。 对于Master Detail,它会给出一个Triangle图标(当我们点击它时。它会展开网格并显示细节)。
我们可以使用自定义图标而不是三角形图标。
我可以更改图像文件夹中的图像,但它会在应用程序中更改。
我希望它只能更改一页。
有什么想法吗?
答案 0 :(得分:0)
您可以像这样更改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>