Tagged Questions

JTable is a Java Swing component used to display and edit regular two-dimensional tables of cells.

learn more… | top users | synonyms

16
votes
6answers
424 views

Why does the JTable header not appear in the image?

I was offering advice on capturing an image of tabular data on Java API or Tool to convert tabular data into PNG image file - when the OP requested a code sample. Turns out to be harder than I ...
11
votes
3answers
7k views

JTable Scrolling to a specified row index

I have a JTable that is within a JScrollPane. Rows are added to the table at runtime based on events that happen in my application. I want to have the scoll pane scroll to the bottom of the table when ...
11
votes
4answers
5k views

How do I drag and drop a row in a JTable?

How do you setup a JTable to be able to drag a row to a different index in the table. For example if I have 5 rows and I want to drag the 4th row to the 2nd position?
9
votes
3answers
19k views

Java JTable setting Column Width

I have a JTable in which i set the column sized like following, table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); table.getColumnModel().getColumn(0).setPreferredWidth(27); ...
9
votes
4answers
6k views

JTable - drag and drop

OK, this problem is out of my league. I'm trying to implement a GUI widget in swing that allows files to be dropped onto a JTable, and allows the rows of the JTable to be dragged for re-sorting. Think ...
8
votes
6answers
621 views

Fitting a JTable Inside a Panel

I'm using a JTable and adding it to a panel which uses a gridbaglayout like so: JTable qdbs = new JTable(rowData, columnNamesVector); qdbs.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS); ...
8
votes
4answers
3k views

Is it possible to include JButton in a JTable?

I have a JTable that stores the results of a database query, so far so good. What I want is for the last column in each table to have a clickible JButton that will open the edit screen for the object ...
7
votes
2answers
86 views

Probability cell editor

I have class Probability. I want use custom renderer for it (already done) and double like editor. But I can't even find double editor (only Number), so I really have no idea how I should implement ...
7
votes
3answers
14k views

JTable How to refresh table model after insert delete or update the data

This is my jTable private JTable getJTable() { String[] colName = { "Name", "Email", "Contact No. 1", "Contact No. 2", "Group", "" }; if (jTable == null) { jTable = new ...
7
votes
2answers
5k views

JTable won't show column headers

I have the following code to instantiate a JTable: the table comes up with the right number of rows and columns, but there is no sign of the titles atop the columns. public Panel1() { int ...
7
votes
4answers
4k views

JTable with a complex editor

I have many custom editors for a JTable and it's an understatement to say that the usability, particularly in regard to editing with the keyboard, is lacking. The main reason for this is that my ...
6
votes
2answers
277 views

Trying to create JTable with proper row header

I am trying to create a JTable that has a row header that looks just like a column header and I have spent altogether too much time on it :/ My situation is similar to this question: JTable Row Header ...
6
votes
2answers
338 views

JTable with JPopupMenu

how can I prevent triggering and showing JPopupMenu only if is Mouse Cursor over selected JTable'Row my question: if is there another way as getBounds from selected row and determine/compare that ...
6
votes
2answers
227 views

Sorting double values in JTable

I have found quite a few questions related to this but I haven't found a simple solution to my issue though. I can't find a way to make my JTable sort Double values properly. I extended ...
6
votes
2answers
262 views

How can I put a control in the JTableHeader of a JTable?

Given a JTable with a column of type Boolean.class, the default renderer is a JCheckBox. It's easy enough to select individual cells based on a user selection, but it may be convenient to select all ...
6
votes
2answers
216 views

JTable row hightlighter based on value from TableCell

as I read that not possible to Encode my Navajo language finging the way how to only alternate/striped Color into JTable (example @camickr) import java.awt.*; import javax.swing.*; import ...
6
votes
9answers
2k views

How can you disable all sorting code in JTable in 1.6

I have a JTable extension that has been in use since Java 1.3/1.4 in the project that provided things like column reordering and sorting by clicking on the column. We are upgrading to Java 1.6, and ...
6
votes
3answers
9k views

How to make a columns in JTable Invisible for Swing Java

I have designed one GUI in which I have used one JTable from which I have to make 2 columns invisible . How should I do that ?
6
votes
5answers
3k views

How to keep a single column from being reordered in a JTable?

I have a JTable and I need to be able to reorder the columns. However I want the first column to not be able to be re-ordered. I used the following to enable reordering: ...
6
votes
9answers
12k views

Putting JComboBox into JTable

I want to put individual JComboBoxes into each cells of a JTable. ie. The JComboBox content is not identical for each cell. I basically would like to be able to just call the following code to add a ...
5
votes
1answer
83 views

Jtable as a Jtree Node

I know you can create a table and add a JTree as a column. But what I want to do is the complete opposite. Check the image and tell me if this is possible. Thanks! UPDATE: By using MKorbel's code ...
5
votes
2answers
155 views

How to select all text in JTable cell when editing but not when typing?

The default behavior of a JTable is to append to the contents when you start typing, and to place the caret at the clicked location when clicking. I want the behavior of both these things to change, ...
5
votes
3answers
402 views

JTable Right Align Header

Basically, I have a JTable containing columns with right-aligned cells but left-aligned headers which looks really bad. I would like to right-align the headers of these columns without altering the ...
5
votes
2answers
305 views

JTable - Boolean Cell Type - Background

I'm using the Nimbus L&F with a JTable that has a boolean (checkbox) element as one of its columns. The issue I'm having is that the boolean column does not follow the natural row background ...
5
votes
2answers
169 views

Highlights subString in the TableCell(s) which is using for JTable filetering

how is possible to synchonize text typed into JTextField (then by DocumentListener passed String to the RowFilter) with TableCell if contains same as String value in JTextField/Document, and then ...
5
votes
1answer
316 views

how to get the focused cell in JTable during multiple selection

I have a JTABLE with 10 rows. If I do multiple selection on the JTABLE, how do A I get the cell that is currently focused? I have tried to used JTable's getEditingColumn() and getEditingRow(), but ...
5
votes
1answer
3k views

Java Swing JTable; Right Click Menu (How do I get it to “select” aka highlight the row)

Short: I need a "right-click event" to highlight the cell row. I am using a JTable inside a ScrollPane in Java Swing (Netbeans Matisse). I have a MouseClicked event listener on the JTable that ...
5
votes
5answers
1k views

JTable with striped background

Using a different background color for odd and even rows is a commonly used trick to improve readability of large tables. I want to use this effect in Swing's JTable. I started out by creating a ...
5
votes
3answers
907 views

Vertical headers in JTable?

Is there a way to rotate 90Âş the column headers of a JTable?
5
votes
2answers
7k views

How to make a JTable non-editable

How to make a JTable non-editable? I don't want my users to be able to edit the values in cells by double-clicking them. Any help would be greatly appreciated. Thanks.
5
votes
6answers
7k views

Remove rows from JTable

I want to remove some rows from a JTable. Please help me.
5
votes
2answers
2k views

Is there any alternative to JTable, that is free and better?

Looking for a free and better alternative to JTable. Found quite a few good ones, but they aren't free. To begin with, I want to be able to select cells diagonally (apart from horizontally and ...
5
votes
1answer
3k views

focus issue using a JComboBox as a cell editor in a JTable

I'm having issues with the following code, where I use a JComboBox to change a String value in a table cell. The JComboBox works fine, but if I click in the box and then click away without selecting ...
4
votes
2answers
38 views

Right-click MouseListener on whole JTable component

I'm using Netbeans and I've designed a window with JTable and added MouseEvent listener on JTable component and added this code: private void productsTableMousePressed(java.awt.event.MouseEvent evt) ...
4
votes
2answers
57 views

Put JTable in the JTree

in connection with thread Jtable as a Jtree Node I put JTable to JTree, but JTree View isn't rendered correctly on start_up, how can I setPreferredSize for JTable, because ...
4
votes
1answer
103 views

JTable, JComboBox using custom Objects

Hi if You put JComboBox in JTable and String[] array to JComboBox everything works fine. Buf if You put your own data type to JComboBox selecting values in same column becomes complicated. Here is ...
4
votes
3answers
69 views

Java Swing: Forcing certain items to the end of a sorted JTable

How do I force certain table rows to be at the end of a sorted JTable? For example, if someone clicks on a column heading to sort by that column, I have some rows that I always want to be at the end ...
4
votes
1answer
56 views

Set all JTable cells unselectable

I'm trying to create a JTable that simply displays data and does not allow any edits or selections. I set all cells to be uneditable by running: TableModel model = new DefaultTableModel(data, ...
4
votes
2answers
237 views

JTable how to change BackGround Color

I inspired by MeBigFatGuy interesting question, in this conection I have very specific question about Graphisc2D, how to change BackGround Color by depends if is JTables Row visible in the JViewPort, ...
4
votes
1answer
91 views

Swing JTable: Event when row is visible, or when scrolled to the bottom?

I'm looking for a way to be informed when a JTable has scrolled such that a particular row becomes visible, or failing that, when the bottom of the table has scrolled into view. Ideally this should be ...
4
votes
4answers
162 views

Java JTable - Make only one column editable

I was wondering how to make one column of a JTable editable, the other columns have to be non editable. I have overwritten isCellEditable() but this changes every cell to non editable. Thnx in ...
4
votes
4answers
168 views

Horizontal Scrolling + JTable + Java

I checked the questions on stackoverflow concerning getting horizontal scrolling on a JTable to work. Setting AUTO_RESIZE_OFF does get me the horizontal scroll bar but at the same time the table does ...
4
votes
3answers
184 views

TextArea Focus using “Tab” in JTable

I am able to setfocus to a single cell in JTable using mouseclick, but while using the tab to move between cells, the next selected tab cell just seems to be highlighted, not focused. Is there a way ...
4
votes
3answers
123 views

How do I get a JTable header to display entire column names instead of shortening them?

I've a JTable that I fill with a class that extends AbstractTableModel. The problem is that the columns are too short to display the column name. I've turned off Jtable AutoResizeMode property, but ...
4
votes
1answer
139 views

JTable with jgoodies sorting trouble

I've got a blocking problem with the sorting functionality of a JTable; this made stall the development of the spare time open source project for 4 months now. Hope to be pointed into the right ...
4
votes
2answers
86 views

JTable trouble changing colors for first column

i try to change the color of fields in a JTable according to their value. I don't want to change any color of the first column but it changes anyway in a buggy way(some fileds are not correctly filed ...
4
votes
1answer
208 views

JTable, JLabel, and its Icon (JLabel can't be customized with Icon)?

This summer is not a real summer, i thought. A cup of coffee make me feel it as a summer, tough (lol). I have a little bit naughty JTable. OMG. Below is my JTable that use my own customized ...
4
votes
2answers
228 views

fancy tooltips in Swing

I have a JTable that I would like to display a fancy tooltip (basically a JTextArea) for particular cells in a column. I am using a custom cell renderer, so it would be easy if I could figure out how ...
4
votes
3answers
999 views

JTable cell editor number format

I need to show numbers in jTable with exact 2 decimal places. To accomplish this I have created a custom cell editor as: public class NumberCellEditor extends DefaultCellEditor { public ...
4
votes
3answers
140 views

Shrink JScroll Pane to same Height as JTable

I currently have JTables nested in JScrollPanes like so: My problem is that the number of rows in each table is variable when the table is created. What I want to do is make the JScrollpane smaller ...

1 2 3 4 5 26