SNRange.js 392 B

12345678910111213141516
  1. /**
  2. * 序列号范围按钮
  3. */
  4. Ext.define('erp.view.core.button.SNRange',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpSNRangeButton',
  7. text: $I18N.common.button.erpSNRangeButton,
  8. tooltip: '序列号范围',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray',
  11. id: 'erpSNRangeButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 105
  16. });