-
27 Jun 2012 6:59 AM #1
autocomplete loadingText in combo doesn't show
autocomplete loadingText in combo doesn't show
REQUIRED INFORMATIONExt version tested:
- Ext 4.1 rev 0
- Chrome 21.0.1180.11 dev-m
- Chrome 19.0.1084.56 m
- XHTML 1.0 Transitional
- BoundList's (ComboBox) loadingText (loading mask) doesn't show when using remote store autocomplete "live search" (happens in the extjs live search example as well)
- look at the extjs combo with live search or create a comboBox with a remote store and autocomplete aith loadingText
- When the list is loading, have loading text mask appear
- loading text mask doesn't appear
- The problem is that the maskload bindStore method in setMaskBind methode of abstract view is called to early, before render.
- more of a workaround: Code:
listConfig: { loadingText: 'Loading List...', emptyText: 'No matching publishers found', listeners: { render: function (cmp){ cmp.setMaskBind(cmp.store); } } },
- win 7
-
27 Jun 2012 7:36 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,107
- Vote Rating
- 453
Have you tried with 4.1.1 RC2? The mask is showing for me in RC2
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.
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote