If you setForceSelection(false), I would expect the typed text to remain in the combo box when you unfocus. Not the case. Also clears when you hit enter.
Printable View
If you setForceSelection(false), I would expect the typed text to remain in the combo box when you unfocus. Not the case. Also clears when you hit enter.
probably related to the other bug I see with the label provider
Thanks for the report. You're right - this doesn't match the description provided. I've filed a bug against the team and will update here with any progress.
Cool thanks Wesley.
Any update on this. It was reported with a RC2, but I still see this behavior in 3.0.0b.
Hi ! Does this bug has been resolved ? I've searched for a workaround, but unfortunately I've found nothing...
Seems not to be fixed in 3.0.1!!
Is EXTGWT-1819 not related? Couldn't find the bug report.
I set to combo box following:
setClearValueOnParseError(false);
I do the same thing with date component.
I start application, enter invalid string to both component, result- first component is cleared, second is not cleared.
Is there any workaround to leave invalid value in combo?
setClearValueOnParseError(false);
setForceSelection(false);
I set those two properties on my combobox because I need to accept arbitrary text but on blur the content text disapears.
Even with some EventHandlers like BlurHandler, onBlur or onBrowserEvent I can't get the typed value.