Tagged Questions

0
votes
3answers
41 views

Is possible to associate a text to a JTableHeader without a table?

Hi, I want to create a JTable with a header inside some cells. But I want to associate a text with this header. Is it possible? How to do? All my best! Leandro Lima
0
votes
4answers
63 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
41 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 …
0
votes
1answer
101 views

putting radio group into JTable

it seems JTable can only allow checkbox. how can i put a radio group into a cell on the JTable?
-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 …
1
vote
1answer
35 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
37 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
66 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
72 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
41 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
1answer
375 views

How do you remove selected rows from a JTable?

I've tried this: public void removeSelectedFromTable(JTable from) { int[] rows = from.getSelectedRows(); TableModel tm= from.getModel(); while(rows.length>0) { …
0
votes
3answers
52 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 …

1 2 3 4 5 10 next
15 30 50 per page