我正在使用kendoUI web和新手。我在下面的代码中遇到了问题。
columns:[
{
command:"edit",
template:"<a href ='index_code.html' > #=edit# </a>",
width: "80px",
},
{
field: 'edit',
template: '<a href="index_code.html"> #=edit# </a>'
}]
当我点击字段编辑列时,它会将页面转移到index_code.html。
但这不会发生在命令编辑列上,它不会执行任何操作。
如何使命令按钮处于活动状态?
答案 0 :(得分:0)
不确定你想要实现的目标,但是:
command
时,您无法使用template
。command
时,您应该希望每个button
都应该包含相同的文字。但如果你希望它看起来像一个按钮,尽管它是一个链接,那当然可以使用template
。
示例:
columns : [
{
field: 'edit',
template: '<a href="index_code.html" class="k-button k-button-icontext"><span class="k-icon k-edit"></span>#= City #</a>',
width: 100
}
]
JSFiddle:http://jsfiddle.net/626qB/1/
答案 1 :(得分:0)
试试这个,
columns:[
{
command: "edit",
width : 100
},
{
field: 'edit',
template: '<a href="index_code.html" class="k-button k-button-icontext"><span class="k-icon k-edit"></span>#= City #</a>',
width: 100
}]
<强>脚本强>
$('.k-grid-edit').on("click", function () {
alert('hi');
});
在此处查看演示:http://jsfiddle.net/626qB/4/