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?
feedback
|
|
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:
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:
| |||
|
feedback
|