我在剑道网格中有一个剑道网格(使用集成网格)。我已经使用剑道提供的可排序网格在两个网格中实现了拖放。但它一次只能使用一个网格。如果我评论其中一个,第二个网格会完美地重新排序。我希望该用户能够拖放两个网格。请帮忙。
问问题
644 次
1 回答
1
我在父网格中缺少过滤器选项。
var grid = mygrid.data("kendoGrid"); grid.table.kendoSortable({
handler: ".handler",
**filter: ">tbody >tr:not(.k-detail-row)",**
hint: function (element) { //customize the hint
var grid = $("#gridProductGroup").data("kendoGrid"),
table = grid.table.clone(), //clone Grid's table
wrapperWidth = grid.wrapper.width(), //get Grid's width
wrapper = $("<div class='k-grid k-widget'></div>").width(wrapperWidth),
hint;
table.find("thead").remove(); //remove Grid's header from the hint
table.find("tbody").empty(); //remove the existing rows from the hint
table.wrap(wrapper); //wrap the table
table.append(element.clone()); //append the dragged element
//table.append(element.next().clone());
hint = table.parent(); //get the wrapper
return hint; //return the hint element
},
过滤器区分细节网格和父网格。它对我有用
于 2015-09-03T17:26:01.920 回答