我有一个包含许多列的表单,一个是一个复选框,它发送两个表单提交单击复选框本身并导致数据库锁定。
index.jsp:
var gridLayout = [
...
{name:"Recurring", field:"isRecurring", type: dojox.grid.cells.Bool, width: "50px",editable:true}
...
]
var grid = new dojox.grid.DataGrid({
id: 'grid',
store: myStore ,
structure: gridLayout
});
dojo.connect(grid, 'onApplyCellEdit', function (a,index,c) { submit(index) } );
有没有替代“onApplyCellEdit”的方法?