Dojo   发布时间:2022-04-21  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了How do I handle dojo datagrid cell updates so I can post them back automatically to the server?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
2 down vote

To be able to push the updates server-side,you've to override _saveCustom() or _saveEverything(). Here is a piece of code (a bit cleaned-up) I'm using to persist an update.

Note that the code below relies on the private _getModifiedItems() because the DataGrid accepts inline editions. If you do kNow the list of modified items (because the edition is done in a popup and you keep the item key somewherE),retreiving the modified item is simpler.

@H_389_12@module.submitupdates = function() { var store = <from a variable local to the module> if (store.isDirty() confirm("updates to be persisted. ConTinue?")) { store._saveCustom = function(saveCompleteCallBACk,saveFailedCallBACk) { var modifiedItem = _getModifiedItems(storE)[0]; dojo.xhrPost( { headers: { "content-type": "application/json; charset=utf-8" },content: dojo.toJson(modifiedItem),handleAs: "json",load: function(responsE) { if (response !== null && response.success) { saveCompleteCallBACk(); } else { saveFailedCallBACk(responsE); } },error: saveFailedCallBACk,url: "/API/<Object>" }); }; store.save( { onComplete : function() { module.loadCachingRuleList(); },onError : function(errorData,request) { _reportupdateFailure(errorData,errMsg); } }); } };

Here is the code I use to get all updated items when the user is about to loose an updated DataGrid (because he leaves the page or because he wants to refresh the grid content).

Note that the following code was using Dojo 1.3. I haven't check if it's easier with Dojo 1.4... I hope that dojo.Stateful that's going to bE introduced in Dojo 1.5 will simplify it,otherwise we'll have to wait for Dojo 1.6 ;)

var _getModifiedItems = function(storE) {
    var modifiedItems = [];
    if (store !== null && store._pending !== null) {
        if (store._pending._modifiedItems !== null) {
            for (var modifiedItemKey in store._pending._modifiedItems) {
                if (store._itemsByIdentity) {
                    modifiedItems.push(store._itemsByIdentitY[R_2_11845@odifiedItemKey]);
                }
                else {
                    modifiedItems.push(store._arrayOfallItems[modifiedItemKey]);
                }
            }
        }
        if (store._pending._newItems !== null) {
            for (var modifiedItemKey in store._pending._newItems) {
                if (store._itemsByIdentity) {
                    modifiedItems.push(store._itemsByIdentitY[R_2_11845@odifiedItemKey]);
                }
                else {
                    modifiedItems.push(store._arrayOfallItems[modifiedItemKey]);
                }
            }
        }
    }
    return modifiedItems;
};

var _getdeletedItems = function(storE) {
    var deletedItems = [];
    if (store !== null && store._pending !== null && store._pending._deletedItems !== null) {
        for (var deletedItemKey in store._pending._deletedItems) {
            if (store._itemsByIdentity) {
                deletedItems.push(store._itemsByIdentitY[deletedItemKey]);
            }
            else {
                deletedItems.push(store._arrayOfallItems[deletedItemKey]);
            }
        }
    }
    return deletedItems;
};

大佬总结

以上是大佬教程为你收集整理的How do I handle dojo datagrid cell updates so I can post them back automatically to the server?全部内容,希望文章能够帮你解决How do I handle dojo datagrid cell updates so I can post them back automatically to the server?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。