Hello,
I have a JTable with hundreds+ of rows of data. The user is able to move the columns and rows around, and delete/add rows and columns at will. The user cannot change the data, but individual cells are constantly updating from an outside source.
I need to be able to get the row index where columnA="x" and columnB="y"...and then update that one individual cell.
(for example, find the row where FirstName = "Jane", LastName ="Doe" and update the PointsEarned column.)
Is there anything built in to the default table model to do this? Since this table could update very very often, I need something relatively quick.
Any suggestions would be GREATLY appreciated!
