SaveBarcode.js 386 B

1234567891011121314151617
  1. Ext.define('erp.view.core.button.SaveBarcode',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpSaveBarcodeButton',
  4. param: [],
  5. id: 'saveBarcode',
  6. text: $I18N.common.button.erpSaveButton,
  7. iconCls: 'x-button-icon-save',
  8. cls: 'x-btn-gray',
  9. width: 60,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. }
  16. });