| 1234567891011121314151617181920212223242526272829303132 |
- Ext.define('uas.main.MainNav', {
- extend: 'Ext.panel.Panel',
- xtype: 'mainnav',
- items: [{
- xtype: 'listview',
- reference: 'domainList',
- displayField: 'text',
- valueField: 'code',
- style: 'border-width: 0 1px 0 0',
- width: 120,
- height: '100%'
- }, {
- xtype: 'listview',
- reference: 'moduleList',
- displayField: 'text',
- valueField: 'code',
- style: 'border-width: 0 1px 0 0',
- width: 120,
- height: '100%'
- }],
- setDomain: function(data) {
- var domainList = this.getController().lookup('domainList');
- domainList.getStore().loadData(data);
- },
- setModule: function(data) {
- var moduleList = this.getController().lookup('moduleList');
- moduleList.getStore().loadData(data);
- }
- });
|