-
26 Nov 2010 7:26 AM #1
TextArea focus proplem
TextArea focus proplem
I use Ext.form.TextArea and Ext.form.ComboBox. User input text on textarea, and then can select some text from combobox to insert on textarea. How can I set cursor on textarea after 'select' event fires in combobox? (I try use focus() method, but it doesn't work, cursor is in combobox)
-
26 Nov 2010 7:44 AM #2Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
You have to defer the focus on the textarea, because the combobox will refocus itself after the select event, e.g.
Code:combobox.on('select', function(){ textarea.focus(); ... }, combobox, {delay: 1});
Similar Threads
-
TextArea focus proplem
By blackcat in forum Ext 3.x: Help & DiscussionReplies: 5Last Post: 26 Nov 2010, 7:52 AM -
why the Ext.form.TextArea can't get focus???
By mychirs in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 19 May 2009, 4:54 PM -
why the Ext.form.TextArea can't get focus???
By mychirs in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 18 May 2009, 4:31 AM -
move cursor on textarea focus? Can it be done?
By silcreval in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 1 Jul 2008, 11:16 PM -
Focus in textarea
By silcreval in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 8 Jun 2008, 9:52 AM


Reply With Quote