I have created a table using table viewer, with SWT Java. Now I want to add a button at the end of each row and also in the table column header.Could any one help me how to implement this?
This is how I have started:
this.viewer = new TableViewer(this);
this.table = this.viewer.getTable();
TableColumn column = new TableColumn(this.table, SWT.LEFT);
column.setText("Table Header");
this.table.setHeaderVisible(true);
this.table.setLinesVisible(true);