いくつかの列を持つフォームがあります.1つはチェックボックスで、チェックボックス自体をクリックすると2つのフォーム送信が送信され、データベースのロックアウトが発生します。
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」に代わるものはありますか?