12345678910111213141516 |
- /**
- * 载入部件按钮
- */
- Ext.define('erp.view.core.button.LoadParts',{
- extend: 'Ext.Button',
- alias: 'widget.erpLoadPartsButton',
- text: $I18N.common.button.erpLoadPartsButton,
- tooltip: '载入部件',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpLoadPartsButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 100
- });
|