0
votes
1answer
38 views
JTable onchange event
Is there any way to detect a cell selection change in a JTable? I've found documentation for detecting a row change using ListSelectionListener but it doesn't seam to work when changing selection on …
1
vote
2answers
33 views
Is there a convenient way to use a spinner as an editor in a Swing JTable?
I deal with numeric data that is often edited up or down by 0.01*Value_of_variable, so a spinner looks like a good choice compared to a usual text cell.
I've looked at DefaultCellEditor but it will …
0
votes
4answers
66 views
Jtable & queue !!
Hello!
I am new at using Jtable and I need some help. I want to write the following CODE to display data from queue in the table
a problem : the data does not appear in the table
i dont kow what is …
1
vote
2answers
102 views
JTable Won’t Show On JPanel
Hi I have created a Jtable and can get it to show on my frame yet not on the JPanel I have ontop of my JFrame. I can't seem to change
import java.awt.*;
import java.awt.event.ActionEvent;
import …
0
votes
1answer
49 views
problem with Checkboxes in Jtable column
Hi all,
I have a Jtable with 6 columns where i have Check boxes in the 6th Column.I am outing the text in to JTable by using the setValueAt() and getValueAt() methods.For the same Jtable I have …
1
vote
1answer
43 views
Java Swing: How to bind a JLabel’s text to a column in the selected row of a JTable?
I am using Netbeans and am trying to find a way for the IDE to auto-generate the code for me. I remember binding a JLabel's text to a column in the selected row of the JTable before, but in that case, …
0
votes
4answers
39 views
How can I get the text in a JTable ?
For example I have a Table that I want to get text that's in the first column and store it in an ArrayList.
-1
votes
3answers
98 views
why it doesn’t work correctly?
I have a table which in the first column ,I have student's name.such as "Esfandyar Talebi","Arash Nouri" and the number of rows can be changed.
and just 2 rows are filled from 4 rows.
the code that I …
0
votes
2answers
53 views
How do you add a border to a row in a Jtable?
I have a Jtable and I want to highlight a row by adding a border to the row. I have extended a DefaultTableCellRenderer and I figure the work needs to be done in the getTableCellRendererComponent …
0
votes
3answers
205 views
java.lang.ArrayIndexOutOfBoundsException: 0 >= 0 attempting to populate JTable
I'm subclassing JTable and using a DefaultTableModel to model my table data. The following class sets up the JTable, and adds one row to the model.
import java.io.File;
import java.util.Iterator;
…
0
votes
3answers
80 views
JTable that can save to a file
Does anyone know of a JTable based Swing component OR code example that can save to a file? i.e: provides a menu item or button that when clicked on prompts the user for a file location and saves the …
1
vote
1answer
18 views
Mutually Exclusive CellEditors in JTable
I currently have a problem whereby editing the contents of one cell in a JTable alters the content of another; two of the columns are mutually exclusive. They are both checkboxes.
At the moment, if I …
0
votes
3answers
61 views
Provide additional behavior when editing a cell in JTable
Hi SO'ers,
I am creating a app in Java. I need to provide additional behavior when editing of a cell in a JTable. So ideally this will happen when the cell loses focus after editing. Depending upon …
2
votes
2answers
35 views
iPhone-like JTable
Hello,
i want to display a jtable with the feature, that if there is not enough space left on the screen the columns first start to shrink (and display less info) and then start to disappear. The …
0
votes
4answers
57 views
how can we make an editable table?
what should I do for editing all the cells of a Table? for example if in a one cell is written "abc", I want to change it to" def", how can I do that?
