我在用戶界面中有一個名爲Code的面板,我不想在他們根據角色登錄時向特定用戶顯示該面板。我是ExtJS的新手。我有阻止用戶的算法/條件,但我不確定在此代碼中應用它的位置。該.js文件是:在ExtJS中顯示/隱藏面板
analysisCodePanel = new Ext.Panel({
id : 'analysisCodePanel',
title : 'Code',
region : 'center',
split : true,
height : 90,
layout : 'fit',
listeners :
{
activate : function(p) {
GLOBAL.IDs[1] = null;
GLOBAL.IDs[2] = null;
p.body.mask("Loading...", 'mask-loading');
runAll(Data, p);}
return;
},
deactivate: function(){
},
collapsible : true
});
我的條件是檢查用戶是否是管理員,所以我可以做GLOBAL.IsCodeAdmin()
然後顯示在上面的面板從其他登錄的用戶隱藏