The abstracttablemodel tag has no wiki summary.
3
votes
1answer
60 views
How to notify a TableCellEditor that a table row is deleted?
I try to implement a TableCellEditor that conains some fields and a delete-button. It works good, but whe the row is deleted, the content in the deleted cell (rendered with TableCellEditor) is not ...
3
votes
1answer
91 views
JTable not showing
In my application everything is distributed.
On a action, application retrieves data from DB and saves in ArrayList<T>.
I create an object of RelativeTableModel where I pass the ...
3
votes
3answers
3k views
create TableModel and populate jTable dynamically
I want to store the results of reading lucene index into jTable, so that I can make it sortable by different columns. From index I am reading terms with different measures of their frequencies.
Table ...
2
votes
3answers
92 views
Swing : Single AbstractTableModel for multiple objects ??
I have different objects which is used to store the data from DB in an ArrayList<T>. I got to show records of each in a Table. I use an AbstractTableModel for first object am working on. The ...
2
votes
5answers
322 views
Add column to exiting TableModel
I have a class;
public class A extends AbstractTableModel
{
...
}
Using ResultSetMetaData I build the TableModel to match my result set from the database.
public class B extends JPanel
{
...
}
...
2
votes
2answers
250 views
java: Access a JProgressBar in an AbstractTableModel
I'm working with the following code that contains a JProgressBar inside of an AbstractTableModel. The JProgressBar progress value is updated in "case 5: " of the getValueAt() function by returning a ...
1
vote
1answer
65 views
Database data doesn't fill into JTable
I've been working on this code for couple of days. My procedure on the database works fine but it doesn't fill into the table. I'm going through the code again and again but I can't find what's ...
1
vote
1answer
78 views
How often JTable call getValueAt()?
How often my JTable call getValueAt() from AbstractTableModel?
Is it will be normal, if I will make big calculations in getValueAt() (for example, calculate value of polynomial)? Should I store ...
1
vote
1answer
47 views
Remove multiple rows in a single pass in JTable AbstractDataModel
i've got an issue with Jtable and my dataModel.
My table model extends AbstracttableModel, the datas are stored in a Vector.
I'have a function witch is suppose to remove one or more row.
These rows ...
1
vote
1answer
222 views
java /TableModel of Objects/Update Object"
I've a collection of Stock objects that I'm updating about 10/15 variables for in real-time. I'm accessing each Stock by its ID in the collection. I'm also trying to display this in a JTable and have ...
1
vote
4answers
279 views
JTable extended from AbtractTableModel is not updating GUI when i add row
This my new MyJtable
public void addWidget(Book w) {
datalist.add(w);
fireTableRowsInserted(datalist.size()-1, datalist.size()-1);
}
calling class
MyJtable tv = new MyJtable(a);
...
1
vote
2answers
813 views
Dynamically changing number of columns in a JTable
I have a JTable and a TableModel that extends AbstractTableModel. I would like to dynamically set the number of columns in the table. I implemented this by adding an attribute to my TableModel named, ...
1
vote
1answer
123 views
How to represent complex class in an AbstractTableModel?
I have this class:
public abstract class Directory {
protected int id;
protected File path;
protected LinkedList<Filter> filters;
protected LinkedList<File> files;
...
1
vote
3answers
483 views
Setting column names in a JTable
I can't figure out something using the constructor JTable(TableModel dm).
I'm using a LinkedList to manage my data so, to display it, I extended AbstractTableModel:
public class ...
1
vote
2answers
551 views
Java Swing - Deleting rows from table with AbstractTableModel()
I have a table off AbstractTableModel. The data in the table is stored in a Vector.
Now, when I remove a row, I am removing it successfully from the vector, but this is not getting updated in the ...
0
votes
1answer
17 views
Blackberry how to empty tablemodel
I have a tableadapter implementation in my application extended from TableModelAdapter and for some reason I want to make tablemodel empty (delete all data inside model) and refill it with new values
...
0
votes
1answer
90 views
Java AbstractTableModel repaint();
I have a problem in my table model to update the data I print in it.
I have the class AgendaTableModel who is the table model, and the class Screen that is the main UI, when I press the button ...
0
votes
4answers
195 views
ArrayIndexOutOfBoundsException: -1 on JTable creation/tablechanged
I have read through all the threads out there that looked as if they could solve my problem and I've also read all the answers on here, but I'm still at my wit's end. I'm not sure why the exception is ...
0
votes
1answer
119 views
AbstractTableModel using TreeMap<Integer,Vector<Object> as the backing how to implement insertRow()
I have a table model that I'm trying to implement an insertRow functionality. Ultimately, I would like to have the ability to add rows to the table from top so you would not need to scroll down every ...
0
votes
2answers
145 views
Best practise for updating data in a AbstractTableModel in a non AWT thread
I've subclassed AbstractTableModel for use as the model for my JTable. Whenever data is added to I call fireTableRowsInserted() in the AWT thread. All access to my underlying container is made thread ...
0
votes
1answer
140 views
Can you get a column of (MySQL) data into a vector in Qt without iterating?
I have data in a MySQL database which I want to put into a vector in order to do some math on it. It may be that this issue is not specific to QSqlTableModels but rather any QAbstractTableModel, but ...
0
votes
2answers
181 views
Java: JTable auto-primary key update
I have this JTable having an AbstractTableModel as its model.
The initial contents are parsed to a two-dimensional array Object from a ArrayList generic to a Entity of the system. Also in the model, ...
0
votes
1answer
800 views
Update Table GUI that extends custom AbstractTableModel
I created a Java GUI that displays the table using the following syntax:
table = new JTable(new MyTableModel(columnNames,
...
0
votes
1answer
533 views
huge JTable AbstractTableModel remove all rows
java JTable, Say I have a huge JTable (800*50) with AbstractTableModel. Now I want to remove all table rows and put new data rows into that table. Which way is easiest and high-performance way to ...
0
votes
3answers
669 views
Update ImageIcon of JTable cell
I am creating my first JTable that requires me to create a custom AbstractTableModel, TableCellEditor, and DefaultTableCellRenderer. Given that I have not needed to create these before, I've made ...
0
votes
1answer
181 views
how to differentiate between isCellEditable() being called due to a user click or due to column dragging
I have a JTable with custom editor and renderer. I have my table model also.I want to instantiate an special input window when user clicks on a cell of an specific column. I have written the logic in ...
0
votes
2answers
1k views
HowTo Remove a Row in a JTable with a Custom TableModel
I've been reading posts similar to mine, and reading through the Java tutorial page but I just can't seem to get this working. I'm not sure if I'm missing something fundamental or not...
I have a ...
0
votes
3answers
214 views
Making a cell visible in JTable when AbstractTableModel is extended
I have extended the AbstractTableModel to suit my requirements. Now this table can be altered by other methods of my GUI. What i want to do is, i want the table to scroll to the currently edited cell ...
0
votes
3answers
1k views
Java Swing | extend AbstractTableModel and use it with JTable | several questions
I followed Oracle's model for implementing an AbstractTableModel
http://download.oracle.com/javase/tutorial/uiswing/examples/components/TableDemoProject/src/components/TableDemo.java
I did this ...
0
votes
1answer
54 views
How do I write an addElement method for a custom Model class extending AbstractTableModel?
For a hw assignment, I need to setup a JTable in Swing, and populate the table's contents via a custom model class that extends the AbstractTableModel. My questions regarding this overly complicated ...
0
votes
2answers
2k views
JTable Delete All Rows Exception
I'm trying to delete all entrys from my abstractTableModel. As long as I don't delete the last remaining row, everything works fine, but as soon as I delete this one, I get an ...
-1
votes
1answer
97 views
Between JTable and TableModel
Now I get confused...
JTable is a part of a swing API so it's handling with how we view the table
stated with JTable table = new JTable();
However to do things with database it needs another class, ...