Hello,
I would like to have some exemple of implementation of jXSearchPanel with jTable. I didn't find something on the web.
Thank you in advance,
Best Regards,
Florent
Hello,
I would like to have some exemple of implementation of jXSearchPanel with jTable. I didn't find something on the web.
Thank you in advance,
Best Regards,
Florent
How about the official one?
You can download source from this java net project.
I have successful implement the jxsearchpanel with jtable. This is my code:
TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>(tableModel);
jTable1.setRowSorter(sorter);
Pattern pattern = jXSearchPanel1.getPattern();
sorter.setRowFilter(RowFilters.regexFilter(pattern, 0));