Hybrid View
-
14 Mar 2012 1:52 AM #1
Autocomplete in combobox
Autocomplete in combobox
Is it possible a combobx, which fetches data from server, is able to auto-complete the user typing?
I tried with the local store, it works well. So I think I might miss something there.
andy idea?
thanks.
-
14 Mar 2012 8:36 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,123
- Vote Rating
- 453
If you have typeAhead set to true it should start firing off server calls after 4 characters
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
14 Mar 2012 6:01 PM #3
An example:
Taken from:Code:Ext.create('Ext.form.field.ComboBox', { emptyText: 'Colour', hideTrigger: true, minChars: 1, triggerAction: 'query', typeAhead: true, store: { fields: ['text'], proxy: { type: 'ajax', url: '...' } } });
http://skirtlesden.com/articles/extjs-comboboxes-part-2
-
14 Mar 2012 7:26 PM #4
-
26 Feb 2013 1:29 AM #5
autocomplete with filter textbox in grid panel
autocomplete with filter textbox in grid panel
Hi,
I want autocomplete with filter of Grid panel.Grid panel having the filter textbox at column. I want autocomplete functionality for filter. Filter data according to that.
thanks.


Reply With Quote