Comboboxes linked together [message #1219916] |
Fri, 06 December 2013 12:44 |
Eclipse User |
|
|
|
Hello,
I am trying to use ComboBoxCellEditor so I can put it in a TableViewer.
The first column should display a combo with some values ("Item One", "Item Two",...) and the 2nd another combo which depend on the value selected in first column ("Item One A", "Item One B",...). The 1st combobox filter the value of teh seconde one to resume
The snippet below does that but not in a tableviewer.
I'd like too use JFace ComboBoxCellEditor and CellEditor but I don't know how to "link" the 2 comboboxes using this way.
Thanks for your help.
package combo;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class ComboExample2 {
Display d;
Shell s;
ComboExample2() {
d = new Display();
s = new Shell(d);
s.setSize(250, 250);
s.setText("A Combo Example");
final Combo c1 = new Combo(s, SWT.READ_ONLY);
c1.setBounds(50, 50, 150, 65);
final Combo c2 = new Combo(s, SWT.READ_ONLY);
c2.setBounds(50, 85, 150, 65);
c2.setEnabled(false);
String items[] = { "Item One", "Item Two", "Item Three", "Item Four",
"Item Five" };
c1.setItems(items);
c1.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
if (c1.getText().equals("Item One")) {
String newItems[] = { "Item One A", "Item One B",
"Item One C" };
c2.setItems(newItems);
c2.setEnabled(true);
} else if (c1.getText().equals("Item Two")) {
String newItems[] = { "Item Two A", "Item Two B",
"Item Two C" };
c2.setItems(newItems);
c2.setEnabled(true);
} else {
c2.add("Not Applicable");
c2.setText("Not Applicable");
}
}
});
s.open();
while (!s.isDisposed()) {
if (!d.readAndDispatch())
d.sleep();
}
d.dispose();
}
public static void main(String[] argv) {
new ComboExample2();
}
}
|
|
|
Powered by
FUDForum. Page generated in 0.27701 seconds