Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
749 views

Merging cells in a JXTreeTable

I want to merge two cells in a JXTreeTable. Is this possible? I have read the solution for Merging cells in JTable, but this does not work for JXTreeTables. What I mean with merging cells: I want to ...
3
votes
1answer
1k views

JXTable - Highlighter after filtering table

Info - for better formatting, I used code-formatting throughout the whole posting. Hi, I have a highlighted JXTable. Rows are highlighted, depending on the value of a specific column (c2). ...
2
votes
1answer
55 views

Column dividers in JTable or JXTable

I Have a JTable (or a JXTable to be more precise) with 3 sections of grouped columns I want to divide. I used to have 3 tables which i programmatically linked (the scrollbar position, the sorting, the ...
2
votes
1answer
67 views

JXTable Highlighter

I would like to highlight data in a JXTable based on the previous data in the table. The data exists in "blocks" but the number of rows in each block of data varies based on a variety of factors; ...
2
votes
3answers
320 views

JXTable with DefaultTableCellrenderer and alternate striping highlighter

I updated to SwingX-1.6.2 but found problems that didn't appear in 1.6. The colors of the JXTable cells looks odd. I use a highlighter with an alternate striping ...
2
votes
4answers
152 views

Is there a way to call JXTable.packAll() in a way that does not lock up the swing thread?

I am displaying lots of data in JXTable from the SwingX project. After loading the data, I call packAll() on the table but with 200 hundred columns and 30,000 records it might take 5 seconds or more. ...
2
votes
2answers
612 views

JXTable listen to sort and sort a similar table the same way

I have a number of JXTables which all have the same columns (but different data). You can sort the data by clicking on one the header of one of the columns. What I want now, is that the other tables ...
1
vote
2answers
23 views

JXTable background image don't renders

I am trying to generate a JXTable with a background image ( a text would be fine as well). Here is my extended JXTable class: public class JXTableWithBackground extends JXTable{ ImageIcon ...
1
vote
2answers
46 views

JXTable: how to query state on column models?

I am writing some UI persistence methods for an application. I'm trying to expand to a JXTable with a fixed set of N columns in the table model. How can I get and set the following information for ...
1
vote
1answer
82 views

Combining JXTable with RXTable

Problem I want the capabilities of JXTable with the "select all on edit" behavior of RXTable. Doing a simple override would be fine but the double click function of the RXTable doesn't work with ...
1
vote
0answers
145 views

Wrong highlighting while using a JXTable with the MatchingTextHighlighter

The basic question: While changing the width of a TableColumn the method SwingUtilities.layoutCompoundLabel(..) sets the parameter Rectangle textR to an old value (or 'the value before'). How could ...
1
vote
1answer
256 views

JXTable convertRowIndexToModel wrong result after sort?

I have a JXTable in which a model is a List of distinct objects. There is a problem when I try to map the view index to model index after sorting the view by the selected column header. Using this ...
1
vote
1answer
283 views

JXTable + GlazedLists + update during drag selection = problem

I'm having a table row selection problem with JXTable. If I run the following program, I get two frames that are viewing the same EventList<Item>. One has a JTable and one has a JXTable. ...
1
vote
1answer
458 views

Swing: table cell rendering doesn't work right for JXTable?

I'm trying to override the highlight color of a JXTable based on the value of certain row items. Here's an example where the highlight is green if the row item value has getNumber() % 2 == 0. It ...
1
vote
1answer
346 views

Freeze columns in JXTable

I'd like to be able to freeze columns in JXTable just like in Excel spreadsheet and came across this project: xframe-swing's JXTable. Just wondering if there is a tutorial for this project. Note that ...
0
votes
0answers
13 views

how to click on a row in jxtable from the code (and trigger its event)

I have a jxtable. I want to click on a row and trigger the related event. Is there a fast way to do it ? (as in button.doClick() I was hoping for JXTable.selectRow()) Thank you
0
votes
2answers
101 views

Views sorting and filtering: GlazedList sorting and filtering + JTable vs Glazed event list+JXTable

I want to create user views (tables) with sorting and filtering capabilities. I use EventList (Glazed Lists) as source for EventTableModel. There are also Sorted List and some filtering items in ...
0
votes
0answers
30 views

jxtable - find the object behind the row when updating

I have a JXTable and a collection bounded to it. I have added a JComboBox renderer as one of its columns. final JComboBox myComboBox = new JComboBox(MyEnum.values()); ...
0
votes
2answers
53 views

jtable and intellij - how do i set the columns to appear next to the the right side

On intellij I have created a JXTable on a JPanel. I have added two columns and set their width. I want the panel too be much longer then the jxtable and so i set its size to be very large. The problem ...
0
votes
1answer
243 views

Out-of-table column sorting with Glazed Lists and a JXTable

I'm using Glazed Lists to sort and filter a JXTable. How can I sort on out-of-table values? That is, I would like to be able to format column values in my own way, yet sort on raw values. My current ...
0
votes
0answers
172 views

column binding with JTableBinding

I have a JXTable which is bounded to a list. when I set a column with setEditable(true) it doesn't let me edit it. do you have any suggestions?
0
votes
1answer
545 views

JXTreeTable and JComboBox cell editor

Jow can I use JComboBox as cell editor in JXTreeTable ? Can you give me a working example please?