我正在尝试向webix数据表项添加masterCheckbox。现在,我得到了以下行为:当我单击master复选框时,值将重写为1或0
{
id:"title",
checkValue:"on",
uncheckValue:"off",
template:"{common.checkbox()} #title#",
header:["Title", {content:"masterCheckbox", contentId:"checkAll"}],
fillspace:true
}
http://webix.com/snippet/26750201
知道我做错了什么吗?
最佳答案
我找到的masterCheckbox的唯一例子是this sample。
似乎主复选框更改了当前列中的值。也就是说,在你的样本中title
变成on
或off
。我想提供的用例应该有一个单独的列,其中包含{common.checkbox()}
:
columns:[
{ id:"ch1", header:{ content:"masterCheckbox", contentId:"mc1" }, template:"{common.checkbox()}", width:40}
],
样本:http://webix.com/snippet/17a28a40
关于javascript - 数据表中的masterCheckbox,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38878786/