| 12345678910111213141516171819 |
- /**
- * 发送数据
- */
- Ext.define('erp.view.core.button.SendData',{
- extend: 'Ext.Button',
- alias: 'widget.erpSendDataButton',
- iconCls: 'x-button-icon-turn',
- cls: 'x-btn-gray',
- hidden: true,
- id:'sendData',
- text: $I18N.common.button.erpSendDataButton,
- style: {
- marginLeft: '10px'
- },
- width: 90,
- initComponent : function(){
- this.callParent(arguments);
- }
- });
|