0

一旦我单击编辑页面中的保存按钮,请确保没有验证错误。完成所有验证后,保存成功后,我想获取所有更新的属性并调用服务并执行我的操作。我使用了下面的代码,在这里我能够进入保存的循环单击,但是我如何识别保存是否成功。我可以在这里获取所有更新的属性吗

aspect.after(ecm.widget.dialog.EditPropertiesDialog.prototype,"onSave", function(event){ console.log(" inside EditPropertiesDialog onsave loop ***");

    if (this._itemEditPane.isValid(true, false, true)) {

        this._itemEditPane.save(lang.hitch(this, function() {

            this.hide();

            if (this._callback) {

                this._callback();

            }
        }));

    }
});
4

0 回答 0