[jQuery] Table sorter pager and live search problem

[jQuery] Table sorter pager and live search problem


Hi all
Can some body please tell me the solution to this problem...
I have 2 tables on page and 2 pagers. Both table have different height
but same width. Each of them occupy 50% of page width . one is on left
other is on right..
the problem is the pager of 1st table is using the height of second
table pager. When I put an alert in pager.js file ... I can see
different height for pager for both tables but finally it comes back
to second table pager height..
also , I am using live search plugin:
it works well until I have all records on same page.... like I can
only find something in the table which is on that page....
If i have 40 records ... and I am showing 10 on 1st page , 10 on
second and so on...
it just finds from those 10 records which I am seeing on the page and
not the entire table records..
here is the code I am using:
$('.tablesorter tbody tr').quicksearch({
position: 'before',
attached: '.tablesorter',
stripeRowClass: ['odd', 'even'],
labelText: 'Search the table'
});
//table sorter plugin for table on page
$(".tablesorter")
.tablesorter({ widthFixed: true, widgets: ['zebra'] })
.tablesorterPager({ container: $("#pager") })
Plz help!
Thanks
Varun