An enhanced Table component in Java, with support for general SwingX sorting/filtering, rendering, highlighting, rollover and search functionality

learn more… | top users | synonyms

0
votes
1answer
34 views

GlazedLists clear throws error on sorted JTable

I would like to include glazedlists in an existing project that uses JTables and JXTables. Mainly because of the easier event-handling. I have made a view tests and came across a problem when ...
0
votes
1answer
75 views

JTable split header Disable Sorting

Currently every header contains the name of the column and ocassionally a combo box below it. Whenever the combo box is clicked the jtable automatically sort. Is there a simple way to disable ...
0
votes
1answer
76 views

tab escape sequence not working when exporting from JXTable to excel (.csv) file

i am trying to export data from a JXTable to a .csv file(excel). i am using the following code for this: public void exportToExcel(NGAFStandardTable table, File file){ int i = 0; int ...
1
vote
0answers
55 views

JXTableHeader resetSortOrder on Shift + click

I use JXTable and JXTableHeader to display sortable tables. JXTableHeader supported a way to reset sort order, by holding down shift and left clicking on the headers at the same time. The problem is ...
-1
votes
1answer
176 views

Change background color of a JTable cell unconditionally [duplicate]

I have a JTable in a frame which is frequently updated by different threads. I am looking for way to change background color of a cell of the JTable irrespective of its content, something like ...
0
votes
1answer
1k views

How to set column width in JTable/JXTable?

My application consists of several JTables resp. JXTables. The goal is to store column width and reload them on start up. But the following code does nothing change on the column widths of the ...
0
votes
0answers
137 views

How to use DefaultTableModel as table model on JXTable?

As my title says. My program gathers data from a database and passes them to the table. database rows goes into Object[][] data then column names on String[] coltitle then my the table model goes ...
0
votes
0answers
17 views

how to get rid of arrayindexoutofboundsexception in JXTable

when I use column control,I checked the column from column control popup, and then arrayindexoutofboundsexception.I used selected row and column index in my program (JXTable)
0
votes
2answers
229 views

Swing JTable - Change background color of a row in function of the previous row

I have a swing JXTable and the requirement is that background color must change if a field differs from the previous row. Here is an example : Row 0 : var = 1 -> Background BLUE Row 1 : var = 1 -> ...
1
vote
1answer
40 views

Do SwingX components have translation for Arabic, Russian or Greek languages?

I'm using a JXTable that contains a search functionality when I press CTRL+F. If I have my locale defined to English or French, the default text of this search window is automatically translated to ...
1
vote
1answer
147 views

Hide a column in JXTable?

I'm using a JXTable and I want to programmatically hide a column. Is there any convenient methode to do this (without setting miniman/maximal/preferd width) ? Thanks.
1
vote
1answer
71 views

Changing current selection in JXTable doesn't work?

I have a JXTable where the users need to introduce data, then save it. Only the thing is, the user has to deselect the last edited cell before saving it. If they don't, the data of that cell isn't ...
1
vote
1answer
109 views

SortController: how to use a dynamic filter

The JXTable from the SwingX project has a method to set a RowFilter directly on the JXTable (see JXTable#setRowFilter). It is unclear to me what you need to do when the filter implementation is ...
1
vote
2answers
70 views

Two JXTables with same custom model - How to make cells editable in one table but non-editable in the second?

I have a custom table model whose data I want to edit in one JXTable, but view-only in a second JXTable. Can this be done without having two separate models? Is there some way of overriding ...
0
votes
1answer
138 views

JXTable - how to update highlighters on sorting the table

I have a JXTable with custom table model. I added 2 ColorHighlighter's with custom HighlightPredicate's. Problem is when i click on the column header, the table sorts the rows, BUT the highlighter's ...
0
votes
2answers
361 views

JXTable java.lang.IndexOutOfBoundsException: Invalid range

i have a problem during adding rows to my tablemodel for my jxtable. The following exception will be thrown: Exception in thread "Thread-9" java.lang.IndexOutOfBoundsException: Invalid range at ...
2
votes
1answer
216 views

Why does my JXTable sort so much slower when I switch to GlazedLists' EventTableModel?

Updated I have updated this question to more accurately describe the cause of my problem and have included a simpler example that the one I originally used. I've included a simple example below to ...
0
votes
1answer
214 views

How to add a new row to JXTable at runtime?

I am using JXTable to display a list of records. When I click "Refresh" button, I want the JXTable to be refreshed to display the newly inserted records. And also when I click "Add new Row" button, ...
0
votes
2answers
229 views

Setting the date format in JXTable cell

On this thread I've figured out how to add a JXDatePicker in to a JXTable (or JTable) cell. But I've a small issue now. DatePicker pops up and works fine according to my need. But I can't change the ...
3
votes
1answer
316 views

HyperLinks in JXTable column, populated from database

My question is how can I make the hyperlinks from a JXTable column (just for one/specific column) to action like "_blank" links of my default desktop web browser. I use JXTable and a ...
1
vote
1answer
72 views

JXTable and Header Cell Above Scrollbar

JTable and JXTables have a header cell that is generated above the scrollbar. It's a small cell but I would like to use it to render an icon and popup menu. How might I access this header cell? ...
0
votes
1answer
51 views

Why does a RolloverRenderer uses the wrong cell context

The issue I have was hard to reproduce but I hope someone here can give me a hint on how to solve this. I've written a ComponentProvider<JLabel> that takes a String value an creates an ...
0
votes
0answers
129 views

JXTable.setHighlighters, refresh UI after editing table

I have a JXTable with some highlighters added with setHighlighters. When I edit a cell of my jxtable my UI is not always updated. I have a problem on one system where I have to move the mouse over the ...
1
vote
0answers
56 views

In JXTable, root column is not taking other column color

I used swingx for table.The first column is not taking color rendering of JxTable. Plz give your valuable suggestion. Thanx in advance.
4
votes
1answer
155 views

How to handle table which sorting and adding data parallel?

I am facing problem of duplicate rows in the JXTable. If I sort the JXTable data while the new rows are being inserted in JXTable, the final result in JXTable shows duplicate rows that make invalid ...
0
votes
1answer
223 views

JXTable - How to render column as Icon/Label?

I have a JXTable up and running but I would like to render a column as a label or Icon. I already have the code to convert the string value into a label (with a series of icons appended together). I ...
3
votes
1answer
292 views

JXTable column sorting changes between 1.0 and 1.6

I recently updated the SwingX library in an application from version 1.0 to 1.6.2 since we updated to JDK1.6 . I know the sorting has been changed to re-use some of the Core JDK components which were ...
2
votes
1answer
271 views

Swingx component provider: hide component on certain rows

I've subclassed Swingx's ComponentProvider to provide JButtons but on some lines of my JXTreeTable, I don't want to show any button. The final "result" I want is to have an empty cell, like what I get ...
5
votes
1answer
385 views

Issue with a JComboBox in a JXTable

I am trying to make a column in a JXTable to be a combo box. Its difficult to explain the problem I am facing. When you click on the drop down, at times the drop down does not stay open long enough ...
1
vote
2answers
106 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 ...
2
votes
1answer
592 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
2answers
214 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 ...
0
votes
2answers
544 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 ...
2
votes
1answer
334 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; ...
1
vote
1answer
264 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
325 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 ...
2
votes
1answer
840 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 ...
0
votes
2answers
157 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 ...
3
votes
3answers
790 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 ...
6
votes
3answers
1k views

Sorting JXTable with SwingX

I am using JXTable which is from SwingX components. If I use setSortable(boolean flag) method then it will enable or disable sorting for all columns. As of my requirement I want to disable sorting ...
0
votes
1answer
536 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 ...
2
votes
4answers
436 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
1answer
412 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. ...
4
votes
1answer
824 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
757 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 ...
2
votes
1answer
396 views

How do I add a Button to JxTable?

I guess I would have to use a Highlighter, but I cannot figure it out.
3
votes
2answers
861 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 ...
0
votes
1answer
840 views

JXTreeTable and JComboBox cell editor

Jow can I use JComboBox as cell editor in JXTreeTable ? Can you give me a working example please?
5
votes
1answer
949 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 ...
4
votes
1answer
2k 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). ...