I'm using jQuery with TableSorter and QuickSearch plugins. These work fine.
How can I:
dynamically display row numbers for each displayed row?
somewhere on my page, display the total number of displayed rows?
I'm using jQuery with TableSorter and QuickSearch plugins. These work fine.
How can I:
dynamically display row numbers for each displayed row?
somewhere on my page, display the total number of displayed rows?
Will you give the number of visible rows on the page.
Something along the lines of:
Will write out the number into a div on your page with an id of
rowCountDiv
Here's the proper answer. In the PHP use something like this:
Then in the quickSearch add an onAfter function.
Voila! Now you have a dynamic count that updates whenever the table is searched.