DeviceControl.js 699 Bytes
Ext.define('App.view.DeviceControl', {
    extend : 'Ext.form.Panel',
    xtype  : 'mvvm-DeviceControlView',
    requires : [
    ],

    frame   : true,
    padding : 10,
    
    bind : {
    },
  
    
 bbar: {items: [{
		            xtype: 'button',
		            iconCls:'off',
		            itemId: 'btnOffDc',
		            text: 'Выключить',
		            action: 'DcOff',
		            disabled:false
    			},
		        {
		            xtype: 'button',
		            iconCls:'restart',
		            itemId: 'btnRebootDc',
		            text: 'Перезагрузить',
		            action: 'DcReboot',
		            disabled:false
		        }]	
    },
    
    items : []
});