如何在C#ASP.net中创建DataGrid,以便您可以拖放行来重新排序它们。我想使用工具箱中的实际DataGrid工具而不是相似的。
答案 0 :(得分:1)
HERE是演示!
正如David所说,你可以使用JQuery来拖放DataGrid'Rows!
<script type="text/javascript">
$(function () {
$(".drag_drop_grid").sortable({
items: 'tr:not(tr:first-child)',
cursor: 'crosshair',
connectWith: '.drag_drop_grid',
axis: 'y',
dropOnEmpty: true,
receive: function (e, ui) {
$(this).find("tbody").append(ui.item);
}
});
$("[id*=gvDest] tr:not(tr:first-child)").remove();
});
你可以找到一个完整的参考HERE :)
祝你好运!