This question is locked. New answers and comments are not allowed.
I have noticed that column resizing isn't available for columns that have been reordered. If I move the column back to the original position it can once again be resized.
Repo:
1. Grid with a random number of columns.
2. Resize column X (success).
3. Reorder column X to a random location.
4. Resize operation isn't available for column X. The other (unordered) columns are unaffected and can be resized.
5. Reorder column X back to original position.
6. Resize column X (success). Doesn't affect other columns which can still be resized.
Telerik MVC 2010.3.1110.235
Server binding:
Repo:
1. Grid with a random number of columns.
2. Resize column X (success).
3. Reorder column X to a random location.
4. Resize operation isn't available for column X. The other (unordered) columns are unaffected and can be resized.
5. Reorder column X back to original position.
6. Resize column X (success). Doesn't affect other columns which can still be resized.
Telerik MVC 2010.3.1110.235
Server binding:
.Groupable()
.Sortable()
.Scrollable(scrolling => scrolling.Height(500))
.Resizable(resizing => resizing.Columns(true))
.Pageable(paging => paging.PageSize(50))
.Reorderable(reorder => reorder.Columns(true))
.Filterable()
.Render(); Thanks, Ian.