数据表中的 masterCheckbox
masterCheckbox in a datatable
我正在尝试将 masterCheckbox 添加到 webix 数据表项。现在,我得到以下行为:当我单击主复选框时,值重写为 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。
似乎 masterCheckbox 更改了当前列中的 value。 IE。在您的示例中 title
变为 on
或 off
。我想提供的用例是有一个单独的列 {common.checkbox()}
:
columns:[
{ id:"ch1", header:{ content:"masterCheckbox", contentId:"mc1" }, template:"{common.checkbox()}", width:40}
],
我正在尝试将 masterCheckbox 添加到 webix 数据表项。现在,我得到以下行为:当我单击主复选框时,值重写为 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。
似乎 masterCheckbox 更改了当前列中的 value。 IE。在您的示例中 title
变为 on
或 off
。我想提供的用例是有一个单独的列 {common.checkbox()}
:
columns:[
{ id:"ch1", header:{ content:"masterCheckbox", contentId:"mc1" }, template:"{common.checkbox()}", width:40}
],