Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been working on an SWT project. I have a combo box whose values are set through database. i have set a fixed size for combo box but when a long string is set as an item for it, the width of combobox exceeds out of set size. I want the combo box to wrap the content by shifting the exceeding string to next line. Here's my code:

String items[] = {"A","B","WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW","C"};
Combo combo =new Combo(comp, SWT.WRAP);
combo.setItems(items);
combo.select(0);
GridData gridData = new GridData(GridData.FILL_HORIZONTAL);
combo.setLayoutData(gridData);

Please help. Thanks in advance

share|improve this question

2 Answers

You will not be able to achieve WRAP in SWT Combo.

You may want to look at

http://www.eclipse.org/nebula/widgets/tablecombo/tablecombo.php

I am not sure TableCombo supports multi line items. But you can achieve that by using OwnerDrawLabelProvider on TableViewer.

share|improve this answer
Actually TableCombo is to provide some larger functionality which i don't need. I just want to wrap the string in multiple line. Anyways i will experiment it and get back to you. Thanks for your reply... – Pargat Dec 3 '12 at 10:15

Combo does not support SWT.WRAP. What you are describing is not possible through any of the standard widgets. This will have to be a completely custom control.

share|improve this answer
3  
Link: SWT Widget Style Bits – jens-na Nov 30 '12 at 7:51
Can you plz guide me a way how to achieve that. Actually i am very new to SWT. – Pargat Nov 30 '12 at 14:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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