SMART datagrid v.1 > Classes > FilterSelectorOptions
If it is true, when click the filter selection box item, it will close the box after filtering.
If want to not to close the box and select multiple items, you should specify as false.
Defaults to false.
grid.setOptions({
operate: {
filterSelector: {
closeWhenClick: true
}
},
...
});
grid.setOperateOption({
filterSelector: {
closeWhenClick: true
}
});
grid.operateOptions().filterSelector().setCloseWhenClick(true);