In my application I need two combo boxes, the content of second one depends on the current selection of first combo. Should I use JFace ComboViewer for this? or shall I directly use combo?
If I use JFace ComboViewer what flexibility I’ll get? or how JFace ComboViewer is better than Combo?
For more clarity, I have to use only strings for my combo.
Thanks in advance!!!
The primary difference – as far as I am concerned – is the use of a
ILabelProviderforComboViewer, whereas you have to calculate the entries yourself forCombo. Whether to use one or the other depends on the specific use-case…