I am making a student record application... I want a column in it which is editable. I have attached table model listener on table and on that column i m saving all the updating values

if(table.getSelectedColumn() == 3 && table.getSelectedRow() != -1 && tme.getType() ==     TableModelEvent.UPDATE)
{
// my code here
table.cellEditAt(row,column); // this is giving me error
}

table.cellEditAt automatically calls table model event and that is producing a infinite loop... Any other method to automatically select a cell for editing????

link|improve this question
1  
Sorry didnt understand you... Let me stat my problem again, I making an app which saves data from jtable to database on entering in the cell. I want to attach a listener to the cell. So after searching alot i found tablemodellistener. In table model listener , there is a method table changed. I Every thing works fine in table changes except this code table.editCellAt(row,col); // This code creates an infinite loop. I cant paste my full code because its interlinked with 4 classes and contain some private information. :) – Great Majestics Jan 8 at 12:59
feedback

2 Answers

please post an SSCCE that demonstate your issues, for example based on my question about Infinite loop by implements TabelModelListener linked to my answer,

link|improve this answer
Sorry didnt understand you... Let me stat my problem again, I making an app which saves data from jtable to database on entering in the cell. I want to attach a listener to the cell. So after searching alot i found tablemodellistener. In table model listener , there is a method table changed. I Every thing works fine in table changes except this code table.editCellAt(row,col); – Great Majestics Jan 8 at 12:52
feedback

The answer was to post an SSCCE. We are not mind readers. We can't guess what your editCellAt(...) method does. If it causes a loop, then that would be because you are somehow changing the model and generating another TableModelEvent. Don't do this!

If the problem is somehow related to placing a cell in edit mode, then I would guess you need to wrap that code in a SwingUtilities.invokeLater() to make sure the processing of the original event is completed before you place another cell in edit mode.

link|improve this answer
good suggestion +1 – mKorbel Jan 8 at 21:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.