extjs 覆盖Ext.Button OnRender事件以启用/禁用按钮

dfddblmv  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(181)

我尝试覆盖ExtJS 3.4.0中的onRender事件,但这会导致脚本错误:对象不支持callParent。我的目标是根据会话对象的权限启用或禁用按钮。

Ext.override(Ext.Button, {
            onRender: function () {
                this.callParent();

                console.log('do something');
            }
        });
ev7lccsx

ev7lccsx1#

我已经用这些代码行解决了问题:

Ext.onReady(function () {
Ext.QuickTips.init();
// get rights here

if (roles.length > 0) {
    Ext.override(Ext.Button, {
        initComponent: function () {
            //filter rights here with matching text
            // if length is greater than 0, then enable disable buttons
            if (buttonRights.length > 0) {
                if (this.text == buttonRoles[0].ItemText) {
                    this.setDisabled(!roles[0].IsAllowed);
                }
            }
        }
    });
}
});

相关问题