首页 > Web开发 > 详细

WebDatagrid自学笔记一

时间:2015-11-28 09:05:45      阅读:337      评论:0      收藏:0      [点我收藏+]

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;
}

 

 

WebDatagrid自学笔记一

原文:http://www.cnblogs.com/sizhizhiyue/p/5002129.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!