赞
踩
$("#dgList").datagrid({
onClickRow: function (index, row) {
var dg = $(this);
var editRowIndex = dg.data("editRowIndex");
if (editRowIndex != index && editRowIndex != undefined) {
dg.datagrid("endEdit", editRowIndex);
}
dg.datagrid('beginEdit', index);
},
onBeginEdit: function (index, row) {
$("#dgList").data("editRowIndex", index);
//可用 .data("otherkey", index); 随意记录其他信息
},
onEndEdit: function (index, row, changes) {
$("#dgList").data("editRowIndex", undefined);
}
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。