Tagged Questions
2
votes
2answers
223 views
How to mark JTable cell input as invalid?
If I take a JTable and specify a column's classtype on it's model as follows:
DefaultTableModel model = new DefaultTableModel(columnNames, 100) {
@Override
public Class<?> ...
2
votes
2answers
303 views
Error Dialog Not Being Destroyed
I am working on a project that is using a JTable to display, among other things, a column of dates. We needed validation for the user input for dates, so I have implemented a combination of masking ...