Ext.define('erp.view.core.button.ImportMpp',{ extend: 'Ext.form.Panel', alias: 'widget.erpImportMppButton', iconCls: 'x-button-icon-excel', text: $I18N.common.button.erpImportMppButton, style: { marginLeft: '10px' }, id:'mppfileform', layout:'column', width: 100, initComponent : function(){ this.callParent(arguments); }, bodyStyle: 'background: transparent no-repeat 0 0; border:0;background-color:#f0f0f0', items: [{ xtype: 'filefield', name: 'file', buttonOnly: true, hideLabel: true, /* disabled:true,*/ width: 90, height: 17, id:'mppfile', buttonConfig: { iconCls: 'x-button-icon-excel', text: $I18N.common.button.erpImportMppButton, cls: 'x-btn-gray', id:'MPPfilebutton', }, }] });