如何将复选框列添加到Kendo网格

时间:2012-08-31 06:40:27

标签: kendo-ui kendo-grid

我正在尝试向KendoUI网格添加一个复选框列。 这是fiddle

我已经关注了剑道论坛的this帖子 有人可以指出我在这里做错了什么。

这是相关代码:

data-columns = '[
    {"field":"Name", "filterable":true},
    {"field":"Price", "filterable":false},
    "UnitsInStock",
    {"field":"Recon"},
    "template": "<input type='checkbox' #= (Recon == true) ? checked ='checked' : '' # disabled />"
]'

2 个答案:

答案 0 :(得分:13)

将列更改为:

[{"field":"Name", "filterable":true}, {"field":"Price", "filterable":false}, "UnitsInStock", {"field":"Recon", "template": "<input type=\"checkbox\" />" }]'

你的语法中有一些错误,以及一些未转义的引号。

希望这有帮助。

答案 1 :(得分:-1)

  

在模板部分,使用CheckBox参见下面的示例:

 {
    title: "Deck Options",
    field: "DeckOption",
    template: "<input type='checkbox' #= (DeckOption == true) ? checked ='checked' : '' # disabled/>",
    width: "7%",
    sortable: {
    mode: "single",
    allowUnsort: false
    }