我已经尝试过使用“imageUrl”用于 TreeView 组件的方法,但这不起作用。
var kendoTreeListData = new kendo.data.TreeListDataSource({
data: ContextSelector.data.tree
});
ContextSelector.tag.kendoTreeList({
columns: [{
field: "Text",
title: "ConnectTo",
attributes: {
"class": "name-cell",
},
}, {
field: "TimeBombWarning",
title: " ",
attributes: {
"class": "name-cell",
},
}],
dataSource: kendoTreeListData,
editable: true,
selectable: true
});
kendoTreeListData.read();
在我的数据源中的每个节点中,我已将“imageUrl”设置为“ http://localhost:2431/test/Content/Images/PageIcons/FavOff.png ”,但这不起作用。
有没有办法在 TreeList 节点中显示图像?
我想用 TreeList 实现什么:TreeView