我们可以在下面代码中的shapeDefaults内容模板部分使用剑道模板吗?
$("#diagram").kendoDiagram({
dataSource: [{
"name" : "Telerik",
"items": [
{"name": "Kendo", "items": [{"name": "Kendo", "items":[{"name":"abc"}]}]}
],
}],
shapeDefaults: {
content:{template: "#=item.name#"}, //Need to use a kendo template here
editable: true
}
});
您的代码是正确的,但Kendo代码中有一个错误;使用模板时,内容可视化不会在重绘时添加。您可以等待下一个版本,也可以简单地将其添加到redrawVisual方法中,它应该是;
redrawVisual: function() {
this.visual.clear();
this.shapeVisual = Shape.createShapeVisual(this.options);
this.visual.append(this.shapeVisual);
this.visual.append(this._contentVisual);
this.updateBounds();
}