12345678910111213141516 |
- /*
- * 下载模板按钮
- */
- Ext.define('erp.view.core.button.DownloadTemp',{
- extend: 'Ext.Button',
- alias: 'widget.erpDownloadTempButton',
- text: $I18N.common.button.erpDownloadTempButton,
- tooltip: '下载模板',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpDownloadTempButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 90
- });
|