VastSendOut.js 472 B

1234567891011121314151617181920
  1. /**
  2. * 确认寄出按钮
  3. */
  4. Ext.define('erp.view.core.button.VastSendOut',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastSendOutButton',
  7. iconCls: 'x-button-icon-SendOut',
  8. cls: 'x-btn-gray-1',
  9. id: 'sendout',
  10. tooltip: '确认寄出多条记录',
  11. id: 'erpVastSendOutButton',
  12. text: $I18N.common.button.erpVastSendOutButton,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 110,
  17. handler: function(){
  18. }
  19. });