Is it possible to freeze just the HEADER (the columns) in a Datatable?
Hello @billtricarico ,
Unfortunately, it’s impossible to freeze header’s columns in a datatable.
However, could you please clarify the issue? To freeze columns we can use such properties as leftSplit and rightSplit
Example: https://snippet.webix.com/02528721
Can’t freeze the header row? That seems like a property that should have been in the DataTable since version 1.0
Ok, my alternative is to set header:false, and make a “header row” as the first row of data, then freeze that row.
Thanks.
All headers are fixed by default ( they are not affected by scrolling )
In addition to that, you can freeze any number of top rows or any number of columns on right and left sides of a screen.
I see what you are saying. It may be because my entire DataTable is inside a scrollview.
Yep, all content inside of scrollview will be affected by the scroll, there is no way to avoid it ( it is a purpose of scrollview )