OutSchedule.js 435 B

12345678910111213141516171819
  1. /**
  2. * 排程按钮
  3. */
  4. Ext.define('erp.view.core.button.OutSchedule',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpOutScheduleButton',
  7. iconCls: 'x-button-icon-check',
  8. cls: 'x-btn-gray',
  9. id: 'outschedule',
  10. disabled: true,
  11. text: $I18N.common.button.erpOutScheduleButton,
  12. style: {
  13. marginLeft: '10px'
  14. },
  15. width: 100,
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });