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