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