标签:
1.$find("WebDataGrid1").get_rows().get_element().moveRow(fromrow, torow);
moveRow 方法是将几行移到到几行, 而这个行的值是生成的html的tr的index
jquery中可以用$(“tr”).index() 取得行号
在moveRow方法之后 其对应行的服务器行号的顺序并没有变, 不管此行显示在界面的第几行它在服务器的行号是不变的。 这点要注意。
2.编辑行:
function editRow() { var grid = $find("WebDataGrid1"); // Get active row var activeRow = grid.get_behaviors().get_activation().get_activeCell().get_row(); // Enter edit mode on the first cell of active row grid.get_behaviors().get_editingCore().get_behaviors().get_cellEditing().enterEditMode(activeRow.get_cell(0)); // Cancel auto postback from link button return false; } function deleteRow() { var grid = $find("WebDataGrid1"); // Delete active row grid.get_rows().remove(grid.get_behaviors().get_activation().get_activeCell().get_row()); // Cancel auto postback from link button return false; }
标签:
原文地址:http://www.cnblogs.com/sizhizhiyue/p/5002129.html