JTable is a Java Swing component used to display and edit regular two-dimensional tables of cells.
1
vote
3answers
30 views
Extending JTable and displaying in a JFrame
My code is still heavily in progress but my problem is that my class that extends JTable will not display in a JFrame. Here is my class that extends JTable. Secondly, I would like to know if the ...
0
votes
2answers
34 views
Swing: Place jTables and jButtons
I have a jFrame with 2 jTables (inserted in 2 jScrollPanes). Then, I have 3 jButtons for each jTable. How can I place them to have the following result:
I don't know very well what Layout to use to ...
1
vote
3answers
46 views
How to update the view of JTable after adding a new row?
This is my TableModel, I have extended AbstractTableModel
class CustomTableModel extends AbstractTableModel
{
String[] columnNames = ...
0
votes
0answers
36 views
Single Selection of checkboxes in Jtable Column
I have a Jtable with three column . The last columns contains checkboxes . I need to enfore single selection model on them . Although i know it can be done via adding a table change listener and ...
0
votes
1answer
28 views
A constantly scrolling JProgressBar
I would like to ask:
Is it possible to have a JProgressBar that moves incessantly unless stopped explicitly? I know that the most common way to use a JProgressBar is to listen for changes and to ...
0
votes
1answer
33 views
Rollover effect for buttons in a table?
I can add buttons to a table with TableCellRender, but those buttons look different from normal buttons, e.g., when the mouse is over, there's no rollover effect. Anyone know how to make buttons in a ...
0
votes
1answer
11 views
making Jtable with add,delete,reset and sorting
Hey does anyone know how to make program using JTable with some function with the column that contain variable type: String, Double,Int so it will contain 3 column with different variable
add Row in ...
0
votes
1answer
49 views
NullPointerException in Java TableRowSorter
I made a jtable for the list of chemicals in the inventory where I can sort each columns using the following code (chemicalTable is the name of the jTable):
...
0
votes
0answers
3 views
Java: Can you embed a JList in an HTMLDocument?
I am struggling to find a way to display a table in Java Swing. I could use JTable but I want something a little less cumbersome, so I can avoid overriding rendering methods to display a JList in one ...
0
votes
2answers
49 views
Sort JTable Except for Last Row
I have a JTable where the last row is the total row that aggregates all other rows. When the user clicks a column header on the table, rows are sorted by that column, except for the total row which ...
-2
votes
1answer
27 views
Set part of JTable cells uneditable
I created JTable in eclipse using "Design" option and now I want to make some cells uneditable. This is my code:
public Frame(int choice) {
initComponents();
defaultModel = ...
1
vote
0answers
32 views
Show foreign key relation message when deleting records in mvc3
I have a table Country.CountryID is a foreign key on another table Energy.When I try to delete a record in Country table,I should get a message showing the foreign key relation.
That message should ...
2
votes
2answers
67 views
How to add and delete table in java
I have a code for making table and sort the data that input there. What if i want to add some action using button to add the row than fill the data and can delete the row too.thanks
here is my code
...
0
votes
2answers
58 views
Sorting Table is wrong when the sort button be pressed more than once?
I have a Problem here. I create program to add data to the table and sort it when i press the button. when i press the sort button once, it isn't wrong. but when i press again it is wrong. so why? ...
0
votes
1answer
18 views
add rows to jTable
I'm doing an exercice about java swing, now it's time to add rows from a database to the jTable, I know that the method to do this is "addRow()" but netBeans doesn't suggest it to my and underline the ...
0
votes
2answers
34 views
Add row to top of AbstractTableModel
I have a abstractTableModel which I need to add rows to the top, so the user can see the most recent entered data, but default it adds to the bottom of the table. Any suggestions?
0
votes
1answer
22 views
Jtable filtering failed
I have a Jtable an i want to filter it based on user entries.
I have write this code:
data_table = new JTable(model); // create data table
data_table.setModel(new DefaultTableModel(pin, colNames)); ...
-4
votes
1answer
25 views
Jtable cell value changed on ke pressed event in Java [closed]
As I am a beginer in Java Programming Language, I am making an ERP,
I am working with jTable,
I have three columns (item quantity, rate, amount)
in the manner that i am writing item quantity in a ...
1
vote
3answers
43 views
Why my JTable isn't showing?
Guys I have a problem with my JTable, my JTable(tblLivro) which contents should be the result(ArrayList) of my query (working) , but when I try to put the rsult in my jtable it just doesn't work, it ...
0
votes
2answers
35 views
JTable Clickable Header in swing [duplicate]
Hello i have a hard time solving this puzzle. professor gave the code and told us to change it to make column head clickable.can anyone change it for me.? wasted almost 4 hours :( not too great in ...
2
votes
1answer
69 views
How to remove/set JTextArea border in JTable cell in Nimbus look and feel
Edit: I have added a SSCCE code
I have extended JTextArea in TableCellRenderer because I wanted to achieve the Multiline text wrapping Mentioned in this SO question and that is working fine. Now I ...
0
votes
1answer
36 views
JTable getColumnClass warning
I have tried searching, but no one seems to have the answer.
I use a JTable in order to have a table with people listed and I wanted to put an ImageIcon so from what I have read I have to override ...
1
vote
3answers
48 views
Function returning the JTable by taking parameter as a Component's Name
public JTable getTable(String Component_name)
{
JTable table=new JTable();
//in this function i want to search all the JTables that have been created on runtime!
//and then i want ...
-1
votes
1answer
29 views
Refreshing jtable [duplicate]
I've created a jtable which can load data from tables in the database, im trying to show all updated or new records captured with a refresh button. Im using java, swing and mysql as my database.
0
votes
2answers
35 views
ClassCastException using JTable?
renbor = tabla_proveedor.getSelectedRow();
DefaultTableModel modelo = (DefaultTableModel) tabla_proveedor.getModel();
modelo.removeRow(renbor);
That line of code gives me an error, it gives me...
...
0
votes
0answers
7 views
how to have a select dropdown menu when editing or creating in jTable?
if you visit jtable.org and try to edit one of their records on the demo table you will notice a variety of field types. Theres checkbox, theres dropdown menu. However in all the demos and downloaded ...
1
vote
1answer
47 views
How to implement multiple line text renderer in JTable
I faced the same problem as mentioned in the following SO question Wrap multiple lines in JTable. and I found Multile cell rendered to do that job. Now my problem is after implementing the cell ...
0
votes
1answer
21 views
java jtable removeRow : java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
I'm removing a row in my JTable and i have this Exception : IndexOutOfBoundsException: Index: 1, Size: 1".
This is my TableModel Classe:
public Class MyTableModel extends AbstractTableModel {
...
0
votes
0answers
9 views
binding data to jTable from xml
I am new in java. i was developing application on .net platform. there was a verity of tools that deals with XML.
In java how can i save data in resultset that is retrived from an xml? and then how ...
0
votes
1answer
33 views
Add content of separated Lists to JTable
How do i populate a JTable with content from 2 different lists?
I have 2 lists with Objects that I get from 2 different tables in a database.
Then I want to put all of them into a single row in a ...
1
vote
2answers
50 views
How to print JTextField into a JTable?
Ok so I've been trying to work on this but I'm completely stuck, I'm sure it's pretty simple.
So I have a set of JTextField that I want to print on a JTable. How would I go about that?
This is part ...
0
votes
1answer
41 views
I can't delete from my SQL database using JTable
So... I want to delete a row from by database using a JTable, but I don't know why it doesn't get deleted, maybe the sintaxis of the DELETE isntruction is wrong...
borrar.addActionListener(new ...
-1
votes
2answers
46 views
how to see what row is selected in a JTable
I am trying to get the value of the row selected in a Jtable but am so confused on how to implement the ListSelectionListener so that I can see what has been selected. I have gone to the java tutorial ...
0
votes
1answer
27 views
Center JTable's cells to the middle of the JTable
How to center JTable cells to the middle of the JTable?
I am using table to paint boxes in the table, but when resized, the cells remain left-top aligned. When the table fits the cells nicely, it is ...
0
votes
1answer
18 views
GlazedList - Filter table based on 1 column only
I'm using GlazedList for handling JTables in my Swing project implemented using MVC pattern. I have the following code in my controller for incorporating filtering functionality in the table.
...
0
votes
1answer
22 views
Difference bewteen using TableRowSorter with getColumnClass and without getColumnClass
I sorted data a table in java.
Both sort with getColumnClass and without getColumnClass is done.
What's the difference between them?
Thanks all
-1
votes
1answer
46 views
Parsed data display in JTable
I am new to Java. I have to display xml Parsed data parent nodes on JTabbedPane and child nodes in jtable into respective JTabbedPane. For parsing i have used sax parser and all the data was ...
0
votes
1answer
44 views
How to sort rows in JTable based on object property?
I am having a JTable with Catobjects. I am displaying their names. How can I when I click on the table header sort by another criteria than their textual name? I have a sort column in the database ...
0
votes
1answer
20 views
In JTable ,I create custom table model by extendind AbstractTableModel and use it , only the default column name(A,B,C,D,..) appear
i am using this class , the table heading appears as A B C D .
class CustomTableModel extends AbstractTableModel
{
String[] columnNames = {"FirstName","LastName","Contact","eMail"};<br/>
...
2
votes
2answers
71 views
unable to create jtable in jsp
hi i wanted to create a jtable in jsp and after a lots of google search i found this site as this site says i will have a default table but when i run it i get a blank page.please help me
...
0
votes
0answers
35 views
Create JTable with different row numbers in Java
I would like to create a JTable with 2 items in the first row, 1 item in the second row, 2 items in the third row, 1 item in the fourth row, and so on. In addition, the first item in the rows with two ...
1
vote
2answers
36 views
JTable reload data
I have the following JTable in code:
String[] columnNames = {"Name", "Category", "Seller", "Sell Price", "Current Bid", "End Date", "Open"};
Object[][] data = GetAuctionTableData();
final JTable ...
0
votes
2answers
34 views
Adding data to object[][] for JTable object
I'm new to java and I want to take data that I have stored in a Map and add it to a table. As I was reading the java tutorials on "How to Use Tables" I found myself lost looking at the sample code ...
0
votes
0answers
35 views
JTable gives error if it has only one row
I have made a class that extends AbstractTableModel to manage data in the table. This class has a constructor which fills its Vector of data. This Vector is then used to show values in the JTable. the ...
0
votes
1answer
59 views
Print JLabel with JTable in desktop application
How to print JLabel with JTable in Java Standalone application?
I have created GUI in which I added some label and one jable . I want to print this GUI. I also used table API but it print only table. ...
1
vote
2answers
39 views
JTable Not Updating Data
For some reason, nothing changes about this JTable when this is called (this method updates the JTable after a user submits an SQL query).
Givens:
The dataVector and columnNamesVector are verified to ...
0
votes
1answer
34 views
How to implement database search in JTable if I'm using VOs and DAOs?
everyone. I decided to contribute with this topic after racking my brains exhaustively.
Most part of the filtering code I got from:
Search a JTable repeatedly using JTextfield text
...
1
vote
1answer
51 views
JTable not updating when model updates
Ok, I have read up on this, but I'm still very confused. I have a JTable with a custom Table Model that stores data in an ArrayList. It displays just fine. However, when I want to add a row, I add an ...
0
votes
0answers
27 views
Table header colors and look-and-feel
I have two tables. In the first one, I used a groupable table header class I found online, the second one, is a basic table. Can I have the headers totally orange just like the first row in my first ...
0
votes
0answers
26 views
Adding Row in JTable from a Vector of Object
I'm stuck here with this JTable, I hope you can help me out.
I have this Class named CD which has (String name, String code, String description, String autor, String quantity) inside its ...






