Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
2k views

Using Eclipse TableViewer, how do I navigate and edit cells with arrow keys?

I am using a TableViewer with a content provider, label provider, a ICellModifier and TextCellEditors for each column. How can I add arrow key navigation and cell editing when the user selects the ...
5
votes
1answer
318 views

What does JFace add to SWT?

What is the difference betweem the following: TreeViewer & Tree TableViewer & Table TreeViewerColumn & TreeColumn 4.TableViewerColumn & TableColumn When to use viewer & regular ...
4
votes
1answer
225 views

Strange alignment and layout in tableviewer with image

I use a TableViewer with two columns. The first should contain text and the second an image depending on the state of the object. The label provider is a custom provider which extends LabelProvider ...
3
votes
2answers
1k views

how can I set the selection on a swt table using setSelection and setting reveal to false?

I'm trying to select some items in my table, but i DONT want them to be revealed. The problem is that calling the method (seen below) automatically results in showSelected() being called inside of ...
2
votes
3answers
58 views

Exception when add data into TableViewer

I have 2 TableViewer controls in a composite (Supposed they are : viewer1, viewer2). When initialize application, one "viewer1" is filled data from server while "viewer2" is set null. ...
2
votes
1answer
554 views

swt table turn off sort arrows in column header

I have the following code which allows the columns in my table to sort by ascending or descending order. protected void setSortColumn(GridPanelColumn gridPanelColumn, TableColumn column) { ...
1
vote
1answer
145 views

How to navigate down with enter key in SWT TableViewer

I have a TableViewer and want the selection to go down one cell when I press the enter key, much like in MS Excel. I implemented my own CellNavigationStrategy with the following findSelectedCell. ...
1
vote
2answers
81 views

ECLIPSE RCP app: toolbar implementation

I have a view with custom toolbar with buttons such as first record, next record, previous record,etc. I want to implement this functionality. I have command object for the toolbar buttons. How can I ...
1
vote
1answer
206 views

JFace - select editable cell at given row index?

EDIT: Here's the code based on Max's suggestion editor.getControl().addKeyListener(new KeyAdapter() { @Override public void keyReleased(KeyEvent e) { Table table = ...
1
vote
0answers
476 views

SWT JFace TableViewer selection problem in Windows 7

I am using the SWT JFace TableViewer component to display a list of data. I have implemented the IColorProvider to provide a custom foreground and background colour. I provide black foreground text ...
1
vote
1answer
215 views

Widgets in JFace TableViewer cells?

I am developing an application using JFace on Eclipse 3.6 and I would like to have actual widgets - mostly checkboxes and buttons - in a TableViewer. Everything I have found seems to suggest that this ...
1
vote
1answer
144 views

SWT table: how to make columns as wide as necessary

With Swing this was quite easy: iterate over all rows in a column and search the widest entry. SWT (or Windows?) supports the double click at the separator between table columns, but how to do that ...
1
vote
1answer
482 views

How to bind a TableViewer to a java.util.List in Eclipse RCP

I'm trying to bind a TableViewer to a models = List<ModelObject> , but I don't really get the hang of it. The binding should be possible via master-detail and a databinding context ...
1
vote
1answer
2k views

Align an image in a SWT TableViewer

I just found out, that its somehow impossible to align an image in a swt tableviewer. Creating a TableColumn with SWT.RIGHT (for instance) has no effect on that column if its labelprovider returns an ...
1
vote
2answers
487 views

Show TableViewer not in line, but in matrix order

I use the TableViewer to show informations in a table. The user can select one of the shown options by selecting one line of the table. I want to create a table in matrix form, in which the user can ...
0
votes
2answers
51 views

How to obtain the TableViewer from a Table

I created a TableViewer in JFace. Later on I iterate through the UI-Tree and have only access to the SWT-API-Level objects. In the case of the TableViewer it is the Table. From the table, I need then ...
0
votes
1answer
37 views

How can I get table cell value as “xyz” WITHOUT hit the Enter or Tab key?

I found out if you editing a TableViewer cell without hit the Enter or Tab key. Then the new cell value won't take effect. For example, a table cell value is "abc" and you change it to "xyz". Then ...
0
votes
2answers
60 views

SWT JFace: How to implement a “leveled or expandable TableViewer”?

I think this question is quite common. Recently I have got a requirement that I need to make a leveled or expandable table-like view. If you need an example, you can refer to Mac OS X's Activity ...
0
votes
0answers
40 views

UpdateStrategy for TableViewer

When working with jface databinding, you can use an UpdateValueStrategy to make sure the given data is synchronized with the source/target in a special way. E.g. at a certain point in your ...
0
votes
0answers
78 views

SWT/JFace Column and Line Span in TableViewer

I need to span some column and rows in a TableViewer. The image bellow pretty much speaks for itself. http://postimage.org/image/28l8re8lg/ I was thinking of implementing this by making some line ...
0
votes
1answer
41 views

Displaying links in a table viewer

I want to display clickable links as column values in a table viewer. All I am getting is plain text now. Any insight is highly appreciated.
0
votes
1answer
147 views

How to use TableViewer in WindowBuilderPro?

I have to create a table in my wizard page and I want to create it using TableViewer. I'm using WindowBuilderPro for designing my wizard page. The TableViewer control is available in the palette of ...
0
votes
0answers
170 views

How to set vertical alignment in jface tableviewer?

I created a jface CheckboxTableviewer and set its row height to 40px. But in windows xp, the checkbox is not aligning to the middle. How can I change the alignment? public class TableTest extends ...
0
votes
1answer
167 views

JFace adapt TableViewerColumn

I would like to compute the width for each TableViewerColumn so that it fits the content best. Is there any "best practice" way of doing this?
0
votes
1answer
414 views

Jface tableviewer multi sort columns

i am implementing a tableviewer that is able to sort values depengin on their column order. e.g. column1-column2-columnX sorts the rows first on the values of column 1, then column 2, column.... ...
0
votes
1answer
441 views

How do I access a TableEditor or an EditingSupport that has been attached to a TableViewer?

I am currently working on an application that uses a TableViewer in several places to display formatted tabular data. Each table must have an export feature where all its content is exported in an ...
0
votes
1answer
756 views

How to embed a SWT TableViewer in a TabFolder?

I am trying to embed a JFace TableViewer in a SWT TabFolder, but when I do so, the table does not show up. The current (working code) in my GitToDo code looks like (see this Git repos): final ...
0
votes
1answer
383 views

Manually trigger the CellEditor in a RCP TableViewer

I'd like to comfort the user by automatically jump to the next cell in a tableviewer, when a previous editing is completed. The user needs to modify start- endtimes in a list of entries. I was ...
0
votes
1answer
275 views

TableViewer, defining an initial sorting order has no effect on data

pratically I build up a tableviewer as usual, but initially it does not sort all the rows according the column defined for sorting. The code I am using: ...