-
3 Oct 2007 5:23 AM #1
[2.0a1][SOLVED] Combo.js SVN r. 1079
[2.0a1][SOLVED] Combo.js SVN r. 1079
Good morning,
After updating to r. 1079 this morning, it looks like some errors were introduced:
From Combo.js:
After the refactoring config is not defined.Code:if(this.mode == 'local'){ if(config.queryDelay === undefined){ this.queryDelay = 10; } if(config.minChars === undefined){ this.minChars = 0; } }
-
3 Oct 2007 8:01 AM #2
as per http://www.sencha.com/forum/showthread.php?t=13985, pls post your test case + other required details.
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
3 Oct 2007 11:47 AM #3
Jack started making the components only use initComponent() rather than the constructor (thanks for that! Tree and stuff yet to go!). The bug is a copy & paste error since the constructor had config as an argument, and initComponent does not. The base constructor applys the config to the object, so it is likely supposed to use "this" instead of "config" in those locations.
-
3 Oct 2007 11:57 AM #4
Thank you for the bug report. We will investigate and fix it soon.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
4 Oct 2007 1:29 AM #5
Thanks, fixed.
-
4 Oct 2007 5:27 AM #6
Thanks, Jack


Reply With Quote