问题描述
怎样在后台拼成一个combo,传到前台的form里可以使用。
解决方案
//处理combo store 字符串问题Ext.form.ComboBox.prototype.initComponent = Ext.form.ComboBox.prototype.initComponent.createInterceptor(function() {if (typeof this.store === 'string') {this.store = eval(this.store);}});
时间: 2024-10-15 22:04:10