我正在为编辑弹出窗口使用模板。我试图强制网格进入编辑模式并在单击其中一列中的链接时显示编辑模板弹出窗口。
我尝试使用命令,但无法将超链接的文本数据绑定到模型中声明的字段,在本例中为“CourseType”。命令列中是否支持数据绑定?
columns: [
{
command: [
{
id: "edit",
title: "School Item",
template: '<a href="\\#">#=CourseType#</a>',
width: 120
}
]
}
]
如果命令列中不支持数据绑定,那么如何在单击模板字段时将网格置于编辑模式?
columns: [
{
field: "CourseType",
title: "School Item",
template: '<a href="\\#">#=CourseType#</a>'
}
]