Table model is attached to Java Swing JTable, providing content to the table, and accepting the cell editing events from the table.

learn more… | top users | synonyms

1
vote
1answer
50 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 ...
-1
votes
0answers
47 views

How can I populate a JTable with objects from an arraylist?

I got one class thats called UserArchive where i make an arrylist to fill with objects from my User class by registering a new customer from my GUI class, and then printing it to a JTextArea with my ...
0
votes
1answer
34 views

Java TableModel implementation crashes the program

In my program I wish to show some data in a JTable. I have a class containing the data, so the easiest way to present it in a JTable seems to extend my class so that it implements TableModel interface ...
0
votes
0answers
41 views

TableModelListener changing the values

I am trying the write the code of the number converter tool in 8085 simulator. I created Jtable called "noConTool with the size 2,8. Then I wrote the listener. However it does not work. private ...
0
votes
2answers
76 views

Cell validation in JTable

I have a JTable that needs cell validation for the cells where the user can input text. When a user enters invalid text the border of the cell turns red. I've managed to get this working associating ...
1
vote
1answer
57 views

Why do we have to use a TableModel for a JTable?

If I want to use a JTable in Java it seems to me for adding rows and doing alters from behind a button or so I always have to use a TableModel (this could be the default one or one created by your ...
2
votes
1answer
183 views

Behavior of JTable.setModel()

Have one JTable on my swing screen. While loading screen, I am setting one table model which is created for this table only. And at run time if there is any data change I am recreating the same model ...
1
vote
1answer
79 views

Add/Remove more columns to a JTable from a custom AbstractTableModel

I have a vector with HashMap elements. I want to put it in a table and every HashTable value must be in column with HashTable key column-title. So elements with key "key1" must appear on table column ...
0
votes
1answer
68 views

Building Java TableModel from list of results

Hi I have problems with populating a TableModel, I cannot understand what the problem is here is my method private TableModel buildTableModel(List<Player> result) { // build the ...
0
votes
1answer
86 views

TableModel, causing duplicate Database Info in a Java JFrame

I have this method setup in a JFrame to be called when the user presses a button to "Load File"; however, when the user presses the button a second time . . . they get another table underneath the ...
0
votes
0answers
114 views

Creating a Table Model component using Netbeans

I'm trying to create a custom table model, but I got stuck. I want to create a table model and bind it using the Netbeans GUI. However, as you can see on the screenshot, the Component dropdown is ...
1
vote
1answer
129 views

JTable refresh issue

I'm having a hard time with a JTable data refreshing. I'm implementing my own TableModel, extending from javax.swing.table.AbstractTableModel, with a method that receives an ...
-1
votes
1answer
154 views

Java - Reading data using string tokenizer for jTable

I have a file called Items.dat, which looks like this: Item1 subItemA subItemB subItemC Item2 subItemE subItemR subItemT and etc... Using string Tokenizer, how do I input these data into a ...
1
vote
2answers
58 views

TableModel convertRowIndex

I found similar topics and read this: Java: Selected rows's index does not changes when sorted How to Keep Track of row index when JTable has been sorted by the user? I use three tables that are ...
1
vote
2answers
133 views

JTable cell renderer skips fourth column

Below is a picture of my JTable. My problem is that the blue background every other row isn't present in the 4th column. My table model and cell renderer are also below. Table model: public class ...
0
votes
3answers
239 views

How to get value of Last cell in JTable?

I have a query ... code is running fine, but am not able to get value of last cell of last row and last column. Below is the code... pls guide with this code am adding rows dynamically to JTable : ...
1
vote
3answers
109 views

Basic programming JTable Model from resultset

it wont add the data, the columnames work, i am worn out i have no clue where to go from here. no error message just wont do it, it displays the object not the strings also i have no clue why it wont ...
1
vote
3answers
51 views

Make String look like url in TableModel

Hello im making a program and using TableModel. I have 6 column filed with string's. I want the sixth column string make it look like URL. When i mean look like URL , i mean turn it into blue and be ...
0
votes
1answer
81 views

Change TableModel structure

so the scenario is that I've got a JTable with a number of JComboBox's as cells. On the selection of an element of a JComboBox, there needs to be a change in the structure of the Table Model. I've ...
0
votes
1answer
567 views

Using java swing table to update MySQL database values

This program is used to read data from database. In the database,there are three tables pki17, pki18, pkn18. For viewing different tables,JComboBox is used and it works by changing the TableModel of ...
0
votes
1answer
210 views

Java TableModel : Adding a row dynamically by clicking on the last row

So I am trying to implement a dynamically editable list and I want to add a row dynamically when I click on the last row or if I edit the last row. I know how to add the row although I would like to ...
1
vote
2answers
61 views

Return JComboBox from JTable

so I've got a number of JComboBox's which make up a JTable. My question is; without having access to these JComboBox's directly, how can I obtain them from the JTable? Below is how I've put the ...
0
votes
2answers
127 views

how to Merge Two Jtable into Third Jtable?

I have two JTable having same header name and number of columns. Now I want to create a third JTable containing all values of this two JTables when i click on merge Button. Please suggest me any ...
0
votes
2answers
53 views

Unable to populate SummaryTable with results

private void myProfileTabStateChanged(javax.swing.event.ChangeEvent evt) { if (myProfileTab.getSelectedComponent() == EditProfile) { ...
0
votes
1answer
78 views

JTable display list of events under one date

I want to post a question about something I wish to do particularly but have no idea how to approach this as I am new with JTables. This is what I have atm: But I would like to arrange the table ...
0
votes
1answer
97 views

Setting JTable Column width from another class

public TableModel getTableData() { TableModel model=null; try { String sql = "SELECT eventID as 'Event ID', date as 'Date',eventName as 'Name', time as 'Start Time' FROM Event"; ...
0
votes
2answers
108 views

Java - TableModelListeners and DataModelEvents

When should I create my own TableModelListeners and DataModelEvents? I know the difference and use of a DefaultTableModel, AbstractTableModel and TableModel. I have seen in many online Java ...
0
votes
3answers
112 views

Recreating a JTable when updating content

I have a application that uses a JTable in it. when I add something to the database it comes into database but I am not able to recreate the JTable somehow.. I have tried to repaint(); the method that ...
0
votes
2answers
106 views

Removing all the Rows then reloading rows in a JTable is causing the getSelectedRow to return a -1

When using some software I have created that has a gui with a JTable with the DefualtTableModel called validAcTableModel, When I initilize the validAcTable this is the logic I am using: ...
3
votes
3answers
465 views

Jtable refresh when delete a row

I have a a table that show all book list from a txt file correctly. I add a new button to frame that when get id number an its textfield and if found, delete it record from file, but if i want to ...
0
votes
1answer
291 views

I'm able to update the TableModel using setValueAt() but changes are not visible in the Table

I'm able to update the TableModel using setValueAt() but changes are not visible in the Table below is the code: import javax.swing.JFrame; import javax.swing.JDialog; import ...
1
vote
2answers
89 views

how to add object on the JFrame

Hello I am new to Java and I am practicing by creating a simple to do list app. Everything works till now but I have a problem with 1 simple thing. How to print the values on my screen in a table ...
-1
votes
1answer
290 views

Populate Jtable from mySQL Data [closed]

I dont know how and where to start my code. I've tried searching in google how to populate Jtable in netbeans GUI using java code. Well actually, i dont want that all the columns in my MySql database ...
0
votes
0answers
82 views

Qt TableModel with not ready data

So, I have QTableView in my dialog, subclassed QAbstractTableModel, and a list of URLs of images to show using Qt::DecorationRole. Data called by reimplemented MyModel::data(const QModelIndex ...
0
votes
1answer
232 views

How to setRowSorter for custom tablemodel?

I have defined a custom tablemodel like the following class TModel extends AbstractTableModel {   Object col[] = null;   Object[][] data = null;      public void setCollen(Object[] col) {     ...
0
votes
2answers
229 views

Java Swing JTable: cannot access the values in the table due to incorrect usage/creation of table model

I am just beginning to program using Java Swing. I am not very familiar with each of the many Java Swing Classes, and have ran into a stumbling block regarding the creation of a Table. I am trying to ...
0
votes
1answer
446 views

JTable reading text files from second line

I'm working on JTable that reads text from a .txt file. the txt file gets updated dynamically after 3 sec. Now when I run the application, everything is good except that the output of .txt files comes ...
2
votes
2answers
276 views

Java, change a cell content as a function of another cell in the same row

I need some help for my problem. I have a table with e.g. a double column and a string column. If the value in the double column is negativ, the string should be "negativ". And the other way if the ...
0
votes
1answer
166 views

Data not showing in JTable

I am using a DAO Factory to get my Data from the database. When i am running my program the data is showing in the printline so he is getting it out of the database. But i want it to show in my JTable ...
1
vote
2answers
66 views

Two JXTables with same custom model - How to make cells editable in one table but non-editable in the second?

I have a custom table model whose data I want to edit in one JXTable, but view-only in a second JXTable. Can this be done without having two separate models? Is there some way of overriding ...
1
vote
1answer
242 views

Populating a jTable using txt file

Thanks for reading. I have a problem, I can't seem to find a way to populate a jTable using data from a .txt file. I'm using Netbeans' GUI builder. Methods like insertRow, addRow...etc are not ...
0
votes
0answers
140 views

Java jTable: list of beans not updated

I'm playing with Netbeans JPA/Swing project. I have a list of beans which is bound to JTable rows. The beans are database entity instances. Table is populated as expected. So far so good. Now I want ...
1
vote
1answer
177 views

Insert data in TableModel.addRow into Blackberry TableView

I need to Create a table where 3 columns are needed and can have multiple rows. I am using BlackBerry API version 6. I have debugged my code and it's giving IllegalArgumentException. I am not able ...
1
vote
1answer
145 views

JTable + MySQL “Realtime Feeling”

I have a JTable that get's populated with data from a MySQL Table, but there are multiple Clients updating and inserting to the Database at once. My Goal is to provide some kind of near realtime ...
0
votes
1answer
113 views

reading file and sending data from the file to a JTable

public void showTotalSummary() { JFrame totalSummary = new JFrame("Total Leave Credit Summary"); totalSummary.setSize(970, 523); ...
0
votes
2answers
111 views

Tooltips on filtered rows in a table

I have a JTable and any single row in it has associated a different tooltip when mouse hover a row. I have created a "filter" for this table; when it is applied it perfectly hides the rows need to be ...
0
votes
2answers
135 views

Pattern for updating JTable on guava events thread safe

Preliminary question How can I build a JTable so that it would be updated when a Google Guava Event is fired (And guarantee it's thread safe)? The simple way would be to do model.setValueAt(aValue, ...
1
vote
2answers
225 views

adding rows in jtable [closed]

this.tModel.insertRow(rowCount,new Object[] {"","","",""}); this.table.setRowSelectionAllowed(true); this.table.changeSelection(0, 0, false, false); this.table.addKeyListener(new ...
0
votes
2answers
2k views

Java JTable, how to change cell data (write text in)?

Am looking to change a cell's data in a jtable. How can I do this? When I execute the following code I get errors. JFrame f= new JFrame(); final JTable table= new JTable(10,5); TableModelListener ...
1
vote
3answers
2k views

how to refresh JTable after after insertion updation or deletion

I want to refresh JTable with the newly added or modified information in the DB Currently it only works once when I click showDetails or after inserting 1 record in the DB. It shows the information ...

1 2 3 4