VastAllot.js 366 B

123456789101112131415
  1. /**
  2. * 批量分配按钮
  3. */
  4. Ext.define('erp.view.core.button.VastAllot',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastAllotButton',
  7. text: $I18N.common.button.erpVastAllotButton,
  8. iconCls: 'x-button-icon-check',
  9. cls: 'x-btn-gray',
  10. id: 'erpVastAllotButton',
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. },
  14. width: 110
  15. });