Hi,
We have some grievances with screen width and column showing. The problem is that columns keep getting hidden/shown after they have been manually set hidden or not from column menu when screen width is adjusted afterwards.
@(Html.Kendo().Grid<>(TestModel)
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.1).Title("Test1");
columns.Bound(p => p.Test2).Title("Test2");
columns.Bound(p => p.Test3).Title("Test3").MinScreenWidth(1000);
})...
Here when screen width is for example 900 and then Test3 column is set to show from column menu Test3 column would show for now. But when after changing screen width the column would hide automatically.
Is there a way to ignore minScreenWidth option for columns after they have been manually set visible or hidden from column menu?