Log.js 785 Bytes


Ext.define('App.view.Log', {
    extend : 'Ext.form.Panel',
    xtype  : 'mvvm-LogView',

 
    width      : 400,
    height:300,
    bodyPadding: 10,
    bbar: {
    	
    	items: [
				{
				      xtype: 'button',
				      iconCls:'load',
				      itemId: 'LoadLogButton',
				      text: 'Обновить',
				      action: 'loadLog',
				      disabled:false
				  }
        ]
    	
    	
    },
    
  
    
    
    items: [{
		               xtype     : 'textareafield',
		               grow      : true,
		               id:'logResult',
		               readOnly     :    true,
		               allowBlank: false,
	                    style:'overflow-y: scroll',
	                    height: 100,
	                    anchor: '95%'
		   }
    	]


   
});