I have a JTable and I would like to do a filter from a JTextfield but only filter the results based on one column and not to search all columns.
I have my JTable I can filter but my filter will filter and search every column of the table I want to restrict it to one column
Can it be done ?
listen to changes in the textFields document and set the appropriate rowFilter limited to the column you want to filter:
(type-cast and guard against empty textfield ommitted)