tablesorter

jquery tablesorter plugin

Im using the tablesorter plugin ( http://tablesorter.com ) and am having a problem with column widths in IE7, it looks fine in firefox and sometimes in IE7. here's a screenshot of the problem: IE7 View and here's how it's supposed to look: Firefox view ...

Getting jQuery tablesorter to work with hidden/grouped table rows

I have the classical table with expandable and collapsible records that if expanded show several subrecords (as new records in the same parent table, not some child div/child table). I am also using tablesorter and absolutely love it. The problem is that tablesorter isn't keeping expanded child records next to the parent records. It sor...

Using jQuery tableSorter on dynamically modified table

I am using the jQuery tableSorter plugin on a page. Unfortunatley, the table that is being sorted is dynamically modified, and when I sort after adding an element, the element disappears, restoring the table to the state that it was in when the tableSorter was created. Is there any way that i can force tableSorter to rescan the page s...

JQuery tablesorter problem

Hi, I'm having a couple of problems with the JQuery tablesorter plugin. If you click on a column header, it should sort the data by this column, but there are a couple of problems: The rows are not properly sorted (1, 1, 2183, 236) The total row is included in the sort Regarding (2), I can't easily move the total row to a table foot...

tablesorter problems with JSP

I have a one-page application whose only page is created through a JSP. It allows people to look up bibliographic information. Unfortunately there are some problems with JQuery tablesorter. The main one is that the result page cannot be sorted, nor the header images are visible, but if you save the page locally then it becomes sortable...

How can I add column resizing to a MooTools sortable table?

I want a table similar to this one, but where the user can adjust the height of the table as well as sort it. How can I do this? ...

How do I sort a date of format mm/yy with the jquery tablesorter?

I have a table wherein one of the columns displays the date in the mm/yy format viz. 12/08, 01/09, 02/08, etc. How do I implementing sorting on this column with the jQuery tablesorter (http://tablesorter.com) so that the dates are appropriately sorted? Using the default date format does not work as it expects a date of three elements (...

Exclude a column from being sorted using jQuery tablesorter

I am looking for a way to exclude a single column from being sorted using jQuery's tablesorter plugin. Specifically, I have a fairly large table and would like to keep a "row number" column fixed so that it is easy to see what position in the table a particular row is, after sorting. For example: # name ----------- 1 papaya 2 ...

Using jQuery tablesorter to sort mm/yy dates

I am using the jquery tablesorter plugin to sort a table. On of my the columns in my table shows the date in mm/yy format. <tr> <td class="col-name">...</td> ... <td rel="2000" class="col-dob">10/00</td> ... </tr> <tr> <td class="col-name">...</td> ... <td rel="1986" class="col-dob">11/86</td> ... </tr> ...

JQuery Tablesorter issue

Hi, I have this table where the is initially blank. Then when the document is ready I call a function that runs an AJAX query for the table content. The initial content is sorted awesomely! But when I call my function again with different parameters to get new content, things start to go wrong. The table fills with the new content just...

jQuery tablesorter - loss of functionality after AJAX call

I have recently been experimenting with the tablesorter plugin for jQuery. I have successfully got it up and running in once instance, and am very impressed. However, I have tried to apply the tablesorter to a different table, only to encounter some difficulties... Basically the table causing a problem has a <ul> above it which acts as ...

jQuery tablesorter extension problem with multiple clicks?

Ok, I have a table, made by a GridView, and attached a tablesorter to it, it works just fine. Then I put it inside an updatepanel, and added the code to rebind it on a postback, here is my script: function loadEvents() { $("table[id$='gv']").tablesorter(); } $(document).ready(function() { loadEvents(); }); function reBind() { if (S...

JQuery tablesorter + resizing column widths

I'm looking for a JQuery plugin for resizing table columns that works with tablesorter. Any recommendations? ...

JQuery/Javascript: Client side modification of asp.net datagrid output to allow tablesorter to work.

The output of the asp.net datagrid doesn't include the thead and tbody elements required for the jquery tablesorter to work. E.g. it looks like this: <table> <tr>this is my header row</tr> <tr>content row 1</tr> <tr>content row 2</tr> <tr>content row 3</tr> ... <tr>content row n</tr> </table> and it needs to look like t...

jquery tablesorter + ajax div content update problem

I'm having trouble with my tablesorter and ajax div content update. Once the ajax is reloaded all the tablesorter functionalities are lost. I've tried livequery but it doesn't seem to work beyond first listing of the table. <script type="text/javascript"> $(document).ready(function(){ $(".tabs > ul").tabs(); $("#sort...

Need JQuery to select a table only if its 1st row has more than 1 column

I need to select and act on a table element with JQuery, but only when it contains at least one row with more than one column. The following selector works, but only gets me part way: $('#my_table_is:has(tbody tr)').doSomething(); Variations I have tried with no success are: $('#my_table_id:has(tbody > tr > td:eq(1))').doSomething();...

jquery tablesorter filter plugin

I am using the tablesorter jquery plugin paired with this great tablesorter filter plugin. I have a select box on my page that contains a list of all the columns of my table. I want to be able to limit the filter to only the selected column when the user chooses to select it. So far I have attached an event to the select box like so: ...

Adding a sorter parser based on data sample from a cell column

This is the last part of this project, thanks to all who've helped with syntax correction on other parts. I'm using the tablesorter plugin for jQuery. Basically, what I want to accomplish is for my custom sort function to pick a table header based on whether or not it has a class, namely "SortableHeader". It then has to decide what me...

How do I force jQuery tablesorter to always sort a column in one direction?

I have a sorted table of results for a sporting event. When I click a header, I want to sort from best to worst, always. I don't want it to reverse when I click again. In some cases the "best" is the shortest amount of time, and other case the "best" is the largest amount (i.e. most weight, longest distance). I have had little luck s...

JQuery TableSorter Comma-Digit Parser not working

Here's my problem, I am currently using the JQuery Table Sorter and I found a Comma-Digit parser on the web. The problem I am having is it doesn't seem to be working. So here is what the column is sorted as: 4,666 141,666 293 341,666 346 461,676 This should be sorted as 293 346 4,666 141,666 341,666 461,676 The parser I am usi...