禁用复选框ColumnMenu kogrid

时间:2017-10-03 08:20:34

标签: jquery checkbox knockout.js kogrid

我有一个类似http://knockout-contrib.github.io/KoGrid/#/examples的ko-grid。我想禁用列菜单中的特定复选框,如下图所示。我该怎么做? enter image description here

提前谢谢。

1 个答案:

答案 0 :(得分:0)

该网站需要更新它的Plunkers,它会调用不安全的http资源,并且没有任何示例显示。

无论如何,要禁用特定复选框,请禁用该对应行的详细信息。像这样:

this.myData = ko.observableArray([{name: "Moroni", age: 50},
                                  {name: "Tiancum", age: 43, disable: true}, //the row you want disabled
                                  {name: "Jacob", age: 27},
                                  {name: "Nephi", age: 29},
                                  {name: "Enos", age: 34}]);

让我知道它是否有效。