我有Kendo TreeList,需要确认Destroy(),但是TreeList中的此命令没有Confirm()函数。
我尝试添加Click()函数,但是它不起作用。
C#代码:
Html.Kendo().TreeList<LearningNodeModel>().Name("LearingTreeList")
// ...
.Columns(columns =>
{
// ...
columns.Add().Command(c =>
{
// ...
c.Destroy().Text("Delete with confirm").Click("onDestroy");
});
})
// ...
JS代码:
function onDestroy(e) {
if (!confirm('Are you sure?'))
return false;
else {
return true;
}
}