Hello,
when I resize column headers in a grid a horizontal scroll bar is shown when they do not fit into the display area.
After sorting any column (twice!) the scroll bar disappears. When resizing a column afterwards it's shown again.
I only noticed this behavior with Responsive feature enabled.
For reproducing use the SamplesBrowser solution.
load-on-demand.cshtml: set all column widths from x% to 100px, enable features Sorting, Resizing and Responsive.
Hello Mohamed,
I tried your scenario using Load on Demand sample from our samples browser, however I was unable to reproduce the issue that you're facing. Could send me an isolated sample that reproduces the issue or just send me your grid configuration? Waiting for your response.
Regards,
Tsanna
Hello Tsanna,
I'm using a TreeGrid and have the following things set in load-on-demand.cshtml
column.For(x => x.ID).HeaderText("ID").DataType("number").Width("100px"); column.For(x => x.FirstName).HeaderText("First Name").DataType("string").Width("100px"); column.For(x => x.LastName).HeaderText("Last Name").DataType("string").Width("100px"); column.For(x => x.Email).HeaderText("Email").DataType("string").Width("100px"); column.For(x => x.Title).HeaderText("Title").DataType("string").Width("100px"); column.For(x => x.HireDate).HeaderText("Hire Date").DataType("date").Width("100px");
no other columns
features.Sorting().Type(OpType.Local); features.Resizing(); features.Responsive();
no other features
Kind regards,
Mohamed
Please note that currently igTreeGrid does not support Responsive feature. That's why when you add it to the features collection it causes undesired behavior like horizontal scrollbar disappearing. If you remove it, the issue won't reproduce. If you need any further assistance, please let me know.