1234567891011121314151617 |
- /**
- * 更新流程类型
- */
- Ext.define('erp.view.core.button.UpdateMaStyle',{
- extend: 'Ext.Button',
- alias: 'widget.erpUpdateMaStyleButton',
- iconCls: 'x-button-icon-submit',
- cls: 'x-btn-gray',
- tooltip: '更新流程类型',
- id: 'erpUpdateMaStyleButton',
- formBind: true,
- text: '更新流程类型',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 120
- });
|