我正在尝试在 HTML 输入控件上动态应用 ext.net V2 组合框。它在 ext.net V1 中工作正常,但不适用于 V 2。
new Ext.form.ComboBox({
editable: false,
store: storeGender,
listeners: {
select: function () {
if (this.oldValue == this.value) {
return false;
}
UpdateValues(this.getEl().id, this.value,(_rows - 9));
this.container.addCls('x-grid-dirty-cell');
}
},
displayField: 'text',
valueField: 'value',
typeAhead: true,
queryMode: 'local',
forceSelection: true,
triggerAction: 'all',
selectOnFocus: true,
width: 80,
applyTo: 'ctl_' + i + '_' + j
});
升级我的应用程序时会出现此问题。