Hi there.
Problem: I'm using Kendo UI Web v2012.3.1114 in my mvc application I have kendo grid with options Reorderable(x => x.Columns(true)) and Groupable(), in DetailTemplate I have another grid without grouping and sorting.
Issue: I can drag columns of detailed grid and drop them to main grid.
Comments:
I saw at kendo.grid.js
I think problem is that filter equals to .k-header:not(.k-group-cell,.k-hierarchy-cell)
that filter applying to all .k-header, even in detail template grid. If I'm right how can I fix it?
Problem: I'm using Kendo UI Web v2012.3.1114 in my mvc application I have kendo grid with options Reorderable(x => x.Columns(true)) and Groupable(), in DetailTemplate I have another grid without grouping and sorting.
Issue: I can drag columns of detailed grid and drop them to main grid.
Comments:
I saw at kendo.grid.js
_draggable:
function
() {
...
filter:
".k-header:not(.k-group-cell,.k-hierarchy-cell)"
...
},
I think problem is that filter equals to .k-header:not(.k-group-cell,.k-hierarchy-cell)
that filter applying to all .k-header, even in detail template grid. If I'm right how can I fix it?