SMART datagrid v.1 > Classes > DisplayOptions
If it is true, the user can move the columns which are contained in fixed area.
You can move column header cell by dragging the mouse. First, columnMovable should be true.
Defaults to false.
grid.setOptions({
display: {
columnMovable: true,
fixedColumnMovable: true
}
});
grid.setDisplayOptions({
columnMovable: true,
fixedColumnMovable: true
});
grid.displayOptions().setFixedColumnMovable(true);