0
votes
2answers
22 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
64 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
1answer
17 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
1answer
43 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 …
2
votes
2answers
32 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 …
1
vote
1answer
36 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, …
-1
votes
3answers
94 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
4answers
38 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.
0
votes
3answers
69 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 …
0
votes
4answers
54 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?
1
vote
2answers
76 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
2answers
43 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
53 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 …
0
votes
3answers
176 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;
…
2
votes
2answers
121 views
swing, show a JList over a editable jTable to select entries to autocomplete the text
Hello World !
I have a JTable with editable cells. Each Cell contains a CarretListener for quick validation of the entered text. But in one special cell you should be able to select entrys out of a …
