BatchGenBarcode.js 500 B

12345678910111213141516171819
  1. /**
  2. * 新增按钮
  3. */
  4. Ext.define('erp.view.core.button.BatchGenBarcode',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpBatchGenBarcodeButton',
  7. cls: 'x-btn-gray',
  8. id: 'batchGenBarcodebtn',
  9. iconCls: 'x-button-icon-save',
  10. text: $I18N.common.button.erpBatchGenBarcodeButton,
  11. formBind: true,//form.isValid() == false时,按钮disabled
  12. style: {
  13. marginLeft: '10px'
  14. },
  15. width: 110,
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });