inline-checkbox

настраиваемый редактор с чекбоксом

string inline-checkbox;

Example

//для столбца datatable
{ id:"ch1", header:"", template:custom_checkbox, width:40, editor:"inline-checkbox"}

Related samples

Details

Чтобы показывать иконку чекбокса в редактируемой ячейке, добавьте в template колонки {common.checkbox()}:

{ id:"ch1", template:"{common.checkbox()}", editor:"inline-checkbox" }

Вы также можно задать свой темплейт, определив таким образом, что будет отображаться в редактируемой ячейке:

function custom_checkbox(obj, common, value){
    if (value)
        return "<div class='webix_table_checkbox checked'> YES </div>";
    else
        return "<div class='webix_table_checkbox notchecked'> NO </div>";
}
...
{ id:"ch1", template:custom_checkbox, editor:"inline-checkbox" }
See also
Наверх