-
23 Feb 2012 3:37 AM #1
Unanswered: How to handle ComboBox's onKeyPress() before Dialog's onKeyPress() in GXT?
Unanswered: How to handle ComboBox's onKeyPress() before Dialog's onKeyPress() in GXT?
I am using GXT 2.2.4 in my web application. I have a dialog with many input controls like combo, suggest box and so on. Now I want to listen to key press event of dialog to submit a task if key pressed is ENTER. So overridden onKeyPress() of dialog class.But If the user hits enter while selecting an item from combo, the dialog's onKeyPress() is fired before combo's onKeyPress() which is submitting the task with out the user selected value.I want to handle combo keypress event before dialog keypress.Can anyone please help me here?
-
23 Feb 2012 9:08 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 435
- Answers
- 3102
Moved to the appropriate forum for you
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.
-
29 Feb 2012 11:54 PM #3
you could check if the combo is expanded using
If it's expanded, don't submit. Else, submit.isExpanded
public boolean isExpanded()
Returns true if the panel is expanded.
Returns:the expand state


Reply With Quote