I am trying to prevent a user from resizing a column too small:
In the demo, if you sort, then resize the sorted column, you can't see the sort arrow or the title
http://demos.kendoui.com/web/grid/column-resizing.html
Is there a way to dynamically set the columnWidth?
I have tried to connect to the columnResize event and check if the newWidth is less than x then set it to y.
However, the setting of the $el.column.width does not actually redraw it.
Any suggestions? Maybe I need to do a refresh after I reset it? I'd prefer them to not be able to drag past a minimum.
I also tried setting min-width on all sorts of css:
.k-grid-header, .k-header, .k-header > a
-me-
In the demo, if you sort, then resize the sorted column, you can't see the sort arrow or the title
http://demos.kendoui.com/web/grid/column-resizing.html
Is there a way to dynamically set the columnWidth?
I have tried to connect to the columnResize event and check if the newWidth is less than x then set it to y.
However, the setting of the $el.column.width does not actually redraw it.
Any suggestions? Maybe I need to do a refresh after I reset it? I'd prefer them to not be able to drag past a minimum.
I also tried setting min-width on all sorts of css:
.k-grid-header, .k-header, .k-header > a
-me-