i would like to add default text when the Drop Down menu is loaded on my view. Any ideas how to do this in SWT jface?

link|improve this question

36% accept rate
Please explain a bit further. What do you mean by a default text? Isn't it just the current value? – Tonny Madsen Aug 6 '11 at 15:15
feedback

1 Answer

I'm guessing what you want to do is get rid of is to show something in the combo when it has been added to the view (it's blank by default until something is selected or typed).

If you want to set a default text displayed until a selection has been made / until the field has been edited, e.g. - Select option -, then you can use:

Combo.setText(String string)

Note, this is not possible if the Combo is SWT.READ_ONLY

If you want to set one of the values in the drop-down as default use the select method:

Combo.select(int index)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.