How to get length of row from a rowsorted table?

Zaid Esmail

This is the code I have. It basically sorts the table based on what the user entered. The problem I have is i cannot retrieve the number of rows after the search. I have tried (rowSorter.getModel().getRowCount()); but it doesnt seem to work.

TableRowSorter<TableModel> rowSorter = new TableRowSorter(jTable.getModel());
    jTable.setRowSorter(rowSorter);
    String text = SearchTF.getText();

    if (text.trim().length() == 0) {
        rowSorter.setRowFilter(null);
    } else {
        rowSorter.setRowFilter(RowFilter.regexFilter("(?i)" + text));
    }
MadProgrammer

The TableRowSorter will not affect the model, it generates a "proxy" of the model which the table can use to display the results.

Instead, ask the JTable for the row count - See JTable#getRowCount

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get data from table which add row at client side?

From Dev

How to get 2 columns from one table and 2 rows as columns from other table in one row, in MySQL?

From Dev

How to get row data from table using angularjs

From Dev

Get row info from table using razor

From Dev

Get randomically or row from a table

From Dev

get a row from dynamic table (jquery)

From Dev

How to get a row and its column from a table with Protractor

From Dev

How could I get this to display another row from the organisation table?

From Dev

How to get first child table row from a table in BeautifulSoup ( Python )

From Dev

Get the characters from a link in a table row

From Dev

How to get attribute value from table row on click

From Dev

How to get related row from same table?

From Dev

How to get first row from each group from a table in sqlitedatabase?

From Dev

How to get a row from a look up table column contains any

From Dev

How to get last inserted row from a table?

From Dev

How to get a row from a Table with no ids

From Dev

How to get row data from table using angularjs

From Dev

How to get the label value from table row when row number is known, using Javascript

From Dev

How to get controls from prototyped UITableViewCell when table row is selected?

From Dev

How to get elements from table by row number in sql server

From Dev

How to get length of a specific column in a table

From Dev

how to get table row values with the selected checkbox to servlet from jsp

From Dev

How to get row id of particular row from legacy jQuery data table

From Dev

How can i use a lookup table to get a row from a parent table using parameter in django

From Dev

How to get the max timestamp row from a given table

From Dev

How to get the value of a cell from an html table after deleting the row?

From Dev

how to get the id value in each row from the append table in JavaScript

From Dev

How to get multiple rows from single row of table?

From Dev

How to get data from big table row by row

Related Related

  1. 1

    How to get data from table which add row at client side?

  2. 2

    How to get 2 columns from one table and 2 rows as columns from other table in one row, in MySQL?

  3. 3

    How to get row data from table using angularjs

  4. 4

    Get row info from table using razor

  5. 5

    Get randomically or row from a table

  6. 6

    get a row from dynamic table (jquery)

  7. 7

    How to get a row and its column from a table with Protractor

  8. 8

    How could I get this to display another row from the organisation table?

  9. 9

    How to get first child table row from a table in BeautifulSoup ( Python )

  10. 10

    Get the characters from a link in a table row

  11. 11

    How to get attribute value from table row on click

  12. 12

    How to get related row from same table?

  13. 13

    How to get first row from each group from a table in sqlitedatabase?

  14. 14

    How to get a row from a look up table column contains any

  15. 15

    How to get last inserted row from a table?

  16. 16

    How to get a row from a Table with no ids

  17. 17

    How to get row data from table using angularjs

  18. 18

    How to get the label value from table row when row number is known, using Javascript

  19. 19

    How to get controls from prototyped UITableViewCell when table row is selected?

  20. 20

    How to get elements from table by row number in sql server

  21. 21

    How to get length of a specific column in a table

  22. 22

    how to get table row values with the selected checkbox to servlet from jsp

  23. 23

    How to get row id of particular row from legacy jQuery data table

  24. 24

    How can i use a lookup table to get a row from a parent table using parameter in django

  25. 25

    How to get the max timestamp row from a given table

  26. 26

    How to get the value of a cell from an html table after deleting the row?

  27. 27

    how to get the id value in each row from the append table in JavaScript

  28. 28

    How to get multiple rows from single row of table?

  29. 29

    How to get data from big table row by row

HotTag

Archive