12345678910111213141516171819 |
- /**
- * 排程按钮
- */
- Ext.define('erp.view.core.button.OutSchedule',{
- extend: 'Ext.Button',
- alias: 'widget.erpOutScheduleButton',
- iconCls: 'x-button-icon-check',
- cls: 'x-btn-gray',
- id: 'outschedule',
- disabled: true,
- text: $I18N.common.button.erpOutScheduleButton,
- style: {
- marginLeft: '10px'
- },
- width: 100,
- initComponent : function(){
- this.callParent(arguments);
- }
- });
|