Split mode allows to have DataTable separated into two parts: 'frozen' and 'scrolled'. The frozen part is fixed. It can contain the last columns on the right(left) side or on the both sides at a time. The scrolled part is movable and can be scrolled horizontally.
To 'froze' columns, you should use parameters leftSplit and rightSplit.
Enabling the 'split' mode
dtable = new webix.ui({
view:"datatable",
...
leftSplit:2, // 2 columns will be frozen on the left side
rightSplit:2 // 2 columns will be frozen on the right side
});
Related sample: Frozen columns. Basic implementation
Back to top