Link to home
Start Free TrialLog in
Avatar of Narendranath
Narendranath

asked on

How to set the cursor in JComboBox

I have a JComboBox which is an editable one.
after populating the data into the combobox,i want to set the cursor to the first element in the combo. How to do this.
ASKER CERTIFIED SOLUTION
Avatar of dbaora
dbaora

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ovi
Ovi

probably :

yourCombo.setSelectedIndex(0);
and :
((JComponent)yourCombo.getEditor().getEditorComponent()).requestFocus();
or
((JTextField)yourCombo.getEditor().getEditorComponent()).requestFocus();
or
((JTextField)yourCombo.getEditor().getEditorComponent()).setCaretPosition(0);
or
((JTextComponent)yourCombo.getEditor().getEditorComponent()).setCaretPosition(0);

or any trick like this
It's time to clean up this topic area and that means taking care of this question. Your options at this point are:

1. Award points to the Expert who provided an answer, or who helped you most. Do this by clicking on the "Accept Comment as Answer" button that lies above and to the right of the appropriate expert's name.

2. PAQ the question because the information might be useful to others, but was not useful to you. To use this option, you must state why the question is no longer useful to you, and the experts need to let me know if they feel that you're being unfair.

3.  Ask Community Support to help split points between participating experts.  Just comment here with details.

4.  Delete the question because it is of no value to you or to anyone else.  To use this option, you must state why the question is no longer useful to you, and the experts need to let me know if they feel that you're being unfair.

If you elect for option 2, 3 or 4, just post comment with details here and I'll take it from there.  We also request that you review any other open questions you might have and update/close them.  Display all your question history from your Member Profile to view details.

PLEASE DO NOT AWARD THE POINTS TO ME.
____________________________________________

----------------------->>>>>>>>>>>>>>    Hi Experts:

In the event that the Asker does not respond, I would very much appreciate your opinions as to which Expert ought to receive points (if any) as a result of this question.  Likewise, you can also suggest that I PAQ or delete the question.  Please let me know if no response the next 3 days.

NEW topic areas added Feb 8, 2002.  https://www.experts-exchange.com/jsp/zonesAll.jsp

Thank you everyone.

Moondancer :)
Community Support Moderator @ Experts Exchange
These are all your remaining open questions as of today, Narendranath

Please update and finalize them today.  If you need help to split points, or other special handling needs, just comment here with details and I'll respond when I can.

EXPERTS --- if Asker chooses not to respond, please provide me with feedback as to the fair outcome to close these.

https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20154148
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20152011
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20151333
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20149703
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20145043
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20144972
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20144884
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20144268

Thank you,
Moondancer
Community Support Moderator @ Experts Exchange
Finalized
Moondancer
Community Support Moderator @ Experts Exchange