12345678910111213141516 |
- /*
- * 清除序列号按钮
- */
- Ext.define('erp.view.core.button.ClearSN',{
- extend: 'Ext.Button',
- alias: 'widget.erpClearSNButton',
- text: $I18N.common.button.erpClearSNButton,
- tooltip: '清除序列号',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpClearSNButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 110
- });
|