tbMain.js 1.44 KB

Ext.define('App.view.tbMain', {
    extend: 'Ext.tab.Panel',
    alias: 'widget.tbmain',
    requires: [
        'App.view.grdLogEvent',
        'App.view.grdLiveSubscribers',
        'App.view.grdUpdInfo',
        'App.view.grdRouts',
        'App.view.grdNotifications',
        'App.view.grdGSMNotification'

    ],
    items: [
	        {
                title: 'Статус событий',
		        xtype: 'grdlogevent',
                id: 'grdlogevent',
                name: 'grdlogevent',
                layout: 'anchor'
      
	        },
            {
                 title: 'Маршруты',
                 xtype: 'grdrouts',
                 id: 'grdrouts',
                 name: 'grdrouts',
                 layout: 'anchor'
            },
    	    {
    	        title: 'Оповещение',
    	        xtype: 'grdnotifications',
    	        id: 'grdnotifications',
    	        name: 'grdnotifications',
    	        layout: 'anchor'
    	    },
	        {
                title: 'Мониторинг СЗС',
		        xtype:'grdlivesubscribers',
		        id:'grdlivesubscribers',
		        name: 'grdlivesubscribers',
		        layout: 'anchor'
	        },
             {
                 title: 'Система оповещения GSM ',
                 xtype: 'grdgsmnotification',
                 id: 'grdgsmnotification',
                 name: 'grdgsmnotification',
                 layout: 'anchor'
             }
	    ]
});