Sha256: 87622f2d2a79be15c19ebbf4371aee7013f609e27b6a8466043014cc1171768e

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

Ext.define("Compass.ErpApp.Desktop.Applications.SecurityManagement.NorthPanel", {
    extend: "Ext.tab.Panel",
    alias: 'widget.security_management_northpanel',
    id: 'security_management_north_region',
    flex: 1,
    constructor: function (config) {
        config = Ext.apply({
            items: [
                {
                    xtype: 'security_management_userspanel'
                },
                {
                    xtype: 'security_management_groupspanel'
                },
                {
                    xtype: 'security_management_rolespanel'
                },
                {
                    xtype: 'security_management_capabilitiespanel'
                }
            ],
            listeners: {
                'tabchange': function (tabPanel, tab) {
                    var southPanel = Ext.getCmp('security_management_south_region');
                    southPanel.setbyParentTab(tab);
                }
            }
        }, config);
        this.callParent([config]);
    }
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erp_app-4.0.0 public/javascripts/erp_app/desktop/applications/security_management/north_panel.js