How to always display the data table horizontal scrollbar ?

Hi ,

I have a long datatable almost the size of the browser window height.
Snippet: https://snippet.webix.com/853412eg

I want its horizontal scrollbar to always be displayed. Because in my actual implementation it could be so long that I need to scroll the browser’s vertical scrollbar to view the end and reach up to the horizontal scroll bar of the table.
This way the column headers are becoming invisible.

OR
Alternatively, if the column headers can be made visible if the browser scrollbar is pulled down, should be fine.

OR ELSE:

to show the column headers in the footer as well.

Thanks

Hello,
I can recommend you to use splitMode which allows you to have DataTable separated into two parts: the “frozen” one and the “scrollable” one.
You can freeze either columns or rows. The “frozen” part of the datatable will be fixed, while the scrollable part will remain movable.
Sample: https://snippet.webix.com/02528721