SMART datagrid v.1 > Classes > OperateOptions
The setting Object about the filter selection box which will be displayed when click the filter handle of column header cell.
This setting object is created internally when initializing grid.
grid.setOptions({
operate: {
filterSelector: {
minWidth: 200,
maxWidth: 1000
}
}
});
grid.setOperateOptions({
filterSelector: {
minWidth: 200,
maxWidth: 1000
}
});
grid.operateOptions().setFilterSelector({
minWidth: 200,
maxWidth: 1000
});
var selector = grid.operateOptions().filterSelector();
selector.setMinWidth(200);
selector.setMaxWidth(1000);