I'm new to WindowBuilder in RCP and I'm stuck with what I think a simple task.
I've created an Composite with a TableViewer.
My Model is:
Class member {
private String id;
private String task;
private String descryption;
private List<String> tag;
...
}
List of choices for tag is limited als List<String> and accesible in the view
private List<String> allowedTags;
In the Bindings I added tableViewer->input to List<member>->Collection as WritableList/Properties.selfList() with columns id,task and descryption.
Now I want to make description and tag editable.
How to solve it?
I see 2 approaches to this:
1. making the cell in the table fo comment editable, and a new cell for tags as checkboxes
2. making a new view to change the values.
which is the easiest approach and how to achieve it?