Log.js 857 Bytes

Ext.define('App.view.Log', {
    extend : 'Ext.form.Panel',
    xtype  : 'mvvm-LogView',
   layout: 'fit',
    height: 400,
    initComponent: function() {
        Ext.apply(this, {
        	
        	 bbar: {
        	    	
        	    	items: [
        					{
        					      xtype: 'button',
        					      iconCls:'load',
        					      itemId: 'LoadLogButton',
        					      text: 'Обновить',
        					      action: 'loadLog',
        					      disabled:false
        					  }
        	        ]
        	    	
        	    	
        	    },
        	
        	
            items: [
                    {
						    xtype     : 'textareafield',
						    id:'logResult',
						    readOnly     :    true, 
                    }
                    ],

        });
        this.callParent(arguments);
    }
});