-
26 Oct 2011 8:18 AM #11
Ah, we're possibly talking about extending different classes. I am extending the ComboBox class, so super would call the getValue() method of the ComboBox class, not the Field class. And since the problem lies within the ComboBox class, I can't get around it.
-
28 Oct 2011 5:53 PM #12
No, I'm talking about extending ComboBox and then replace the call to super with the code I'd showed you (which is from ComboxBox's parent class Field).
-
31 Oct 2011 8:00 AM #13
Ah, understood, thanks. That seemed to work great. The only thing I had to comment out (because it was a private member variable) was the following:
Code:if (!initialized) { return value; }
-
31 Oct 2011 8:47 PM #14
Hopefully we will see this fix in the future, but my guess is it will be a while till 2.2.6 comes...
-
10 Oct 2012 3:47 PM #15
Hi Darrell / Sven,
Could you add this patch to the source for 2.2.6/7 as we are still using this version and it's awkward to always have to rebuild from source. I raised this some time ago and it will tide us over till we move to GXT3
Thanks.Code:Index: ComboBox.java =================================================================== --- ComboBox.java (revision 2488) +++ ComboBox.java (working copy) @@ -551,7 +551,7 @@ return value; } if (store != null) { - store.clearFilters(); + // store.clearFilters(); // GXT Bug Filtered suggestions reset on form validate when forceSelection = true getPropertyEditor().setList(store.getModels()); }
-
10 Oct 2012 6:41 PM #16
Yes, in the same boat here - would be great if this patch could be applied.
Thanks
Eugene
-
21 Apr 2013 6:20 PM #17
Sencha team, I saw a recent post that said a 2.3 release is due soon, so would you consider fixing this bug? You just need to comment out one line (554) in ComboBox.java.
We have been running patched code for 6 months now so I believe it's a safe fix.
Carl.
-
5 May 2013 3:39 PM #18
To anyone following this issue - this fix was not includes with the 2.3 release.
-
11 Jun 2013 6:54 AM #19
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote