Check out the example: http://jsbin.com/yagihuwe/1/edit
When the following code was commented:
Change the selection of the grid row, then the name at grid bottom will be updated automatically, but when we enable the above code, and select different rows, the name just don't change. It seemed that the event was stopped by sortable widget. Any suggestions?
When the following code was commented:
$(
'#grid tbody'
).kendoSortable({
axis:
"y"
,
change :
function
(e){
var
data = $(
'#grid'
).data(
'kendoGrid'
).dataItem(e.item);
}
});
Change the selection of the grid row, then the name at grid bottom will be updated automatically, but when we enable the above code, and select different rows, the name just don't change. It seemed that the event was stopped by sortable widget. Any suggestions?