我正在尝试动态地在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
});
升级我的申请时会出现此问题。
答案 0 :(得分:0)
Ext.NET 2使用ExtJS 4.1,它取消了对applyTo的支持并将其从大多数组件中删除,对于组合框尝试配置属性“ transform ”,这几乎完全相同,请查看以下链接以获取更多信息: