VoucherFlow.js 335 B

1234567891011121314
  1. Ext.define('erp.view.core.button.VoucherFlow', {
  2. extend : 'Ext.Button',
  3. alias : 'widget.erpVoucherFlowButton',
  4. iconCls : 'x-button-icon-source',
  5. cls : 'x-btn-gray',
  6. text : $I18N.common.button.erpVoucherFlowButton,
  7. style : {
  8. marginLeft : '10px'
  9. },
  10. width : 70,
  11. initComponent : function() {
  12. this.callParent(arguments);
  13. }
  14. });