How do i disable autocomplete on Ext.form.ComboBox? When the user type, i want the combobox to perform like a normal textbox.
I tried these settings but autocomplete still popping up.
this.searchFieldBox = new Ext.form.ComboBox({
triggerAction: 'all',
disableKeyFilter: true,
store: this.searchStore,
displayField: 'Value',
autoSelect: false,
fieldLabel: htmlHelpObject(me.id, this.Name),
labelSeparator: '',
labelCls: 'sectionLabel2',
emptyText: 'Enter a search term',
width: 500,
labelWidth: 160,
margin: "0 2 0 0",
validateOnBlur: false,
validateOnChange: false,