ControlPanel.js 846 Bytes

Ext.define('App.view.ControlPanel', {
			extend: 'Ext.panel.Panel',
			alias: 'widget.controlpanel',
		    requires: ['App.view.btnShowRouts','App.view.btnShowNotification'],
			 tbar: [{
            xtype:'buttongroup',
            items: [{
                text: 'СЗС',
                iconCls: 'add24',
                scale: 'small'
            },{
                text: 'АГК',
                iconCls: 'add24',
                scale: 'small'
            }]
       }, {
            xtype:'buttongroup',
            items: [{
                text: 'Маршруты',
                iconCls: 'add24',
				xtype:'btnshowrouts',
				action:'btnshowrouts'
            },
				{
			text:'Оповещение',
			iconCls:'add24',
			xtype:'btnshownotification',
			action:'btnshownotification'
				}
			]
        }
	]
});