码迷,mamicode.com
首页 > Web开发 > 详细

WebDatagrid自学笔记一

时间:2015-11-28 09:07:14      阅读:259      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!