ConfirmThrowQty.js 415 B

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