I am initializing a kendo grid from a pre-populated html table and want to disable grouping on one column (as it is a free text column).
I have tried the following after initialization and the column property "groupable" is set to false but the grid still allows me to drag the column header into the group area.
Any ideas on how to make one column not groupable?
var
grid = $(gridElementSelector).kendoGrid({<br> filterable:
false
,<br> sortable:
true
,<br> pageable: {<br> refresh:
false
,<br> pageSize: 10,<br> pageSizes:
true
,<br> buttonCount: 2,<br> input:
false
<br> },<br> groupable:
true
<br> }).data(
"kendoGrid"
);
I have tried the following after initialization and the column property "groupable" is set to false but the grid still allows me to drag the column header into the group area.
grid.columns[2].groupable =
false
;
Any ideas on how to make one column not groupable?