9

私は多くの成功を収めてSlickgridsを使用しています。私はajax編集をすべて機能させていますが、機能の一部を追加しようとしています。

以下は、セルを更新できるようにする私のコードです-意図したとおりに機能します-しかし、jsonデータからの戻り値で編集された後、セルを変更できるようにしたいと思います。以下の私のコードを参照してください-編集されたセルを新しい返されたデータで更新するコマンドが必要な場所に大文字を入力しました

    grid.onCellChange.subscribe(function(e, args) {
                  var dataString = "col="+grid.getColumns()[args.cell].name+"&row="+args.item.new_training_calendar_id+"&value="+data[args.row][grid.getColumns()[args.cell].field];

                $.ajax({
                    type: "POST",
                    url: "mydomain/update_cell",
                    data: dataString, dataType: "json",
                success: function(a) { 
                        if(a.status != "ok") { 
                             alert(a.msg); 
                             undo(); 
                           } else {
                             alert(a.msg);
                             **CHANGE_CELL_HERE TO (a.newdata);**
                            }
                     return false;
               } }); });
4

1 に答える 1

15

If you are using DataView in your grid, you can use:

grid.invalidateRow(args.row);
var row = dataView.getItem(args.row);
row[grid.getColumns()[args.cell].field] = a.msg;
dataView.updateItem(args.item.id, row);
grid.render();

If you are using a plain grid instead, you can use:

grid.invalidateRow(args.row);
data[args.row][grid.getColumns()[args.cell].field] = a.msg;
grid.render();

Hope that helps!

于 2012-08-23T13:10:03.120 に答える