tablesorter

JQuery tablesorter conflicts with checkall toggle

I am trying to create a table that is sortable using JQuery tablesorter and also with a select all/none checkbox toggle for the individual row checkboxes. Tablesorter is disabling the toggle. On a similar post I read "tablesorter is destroying/recreating the original Dom element" - that said I'm still not sure how to fix it. My code i...

Tablesorter example not working

This should work: <head> <title>Damn</title> <script src="jquery-latest.js" type="text/javascript"/> <script src="jquery.tablesorter.min.js" type="text/javascript"/> <script type="text/javascript"> $(document).ready(function() { $("#tablesorter-demo").tablesorter(); }); </script> </head> <body> <table id="tablesorter-demo" c...

date Sorting Problem with Jquery Tablesorter

I am trying to sort a table which has column like 2009-12-17 23:59:59.0. I am using below to apply sort $(document).ready(function() { $("#dataTable").tablesorter(); } ); But its not working for the dates of format yyyy-mm-dd. Can any one suggest how can i apply this format for sorting? ...

Jquery TableSorter 2.0 - Revert Sort order

All, I am using the JQuery TableSorter Plugin. The table sorts fine for the selected columns. Consider that when the page loads, there is no sorting taking place. Now, if the table is sorted by one column, it sorts. Now, upon clicking a "Revert Sort" link outside the table, the tablesorter should revert to the initial sort order, even i...

Is there a practical max number of rows for jQuery tablesorter?

I'm using the jQuery tablesorter plugin in a very simple way, to add sortability to the first four columns of a five column table. The maximum width of any of the columns is 255 characters, and most are narrower than that. This works just fine on smaller result sets, but if my table (based on a search query) grows over ~300 rows, there ...

Is it possible to overide the sort function in the jQuery tablesorter?

I'm currently using tablesorter to sort a set of graphs. I achieve this by using a hidden text to embed the "number" the graph contents represent. The textExtraction routine then pulls the number out for sorting. However the graphs are actually for two separate things, lets call them A & B where a B node is a child of one of the A node...

Link structure for sorting an HTML table built using PHP

I appreciate any help I can get with this problem: I have 2 search forms, one does a keyword search and the other does a search by country, state and city (with an input for each) The results are output to a table. The header row contains a link for sorting each column. Problem is I don't know how to build my GET url string for sorting...

Jquery Tablesorter custom date

Hi, I'm trying to setup a custom date parser but can't get my head around it. Basically my dates are in the format mm/yyyy. Can anyone point me in the right direction? Thanks ...

JQuery and Live Table Updates

Hiya i was wondering if anyone can point me in the direction of examples or sample code for a few things regarding table minipulation i'm trying to achive but haven't been able to crack yet. I currently have a table of data being produced that is sorted and displayed using Tablesorter plugin for Jquery. I would like to add these extr...

jQuery tablesorter plugin styling

I have this page and the jquery function doesn't seem to execute. It should work like the example in this page. Any idea of what go wrong? ...

Using jQuery range slider with TableSorter

I recently scrapped a project that utilized a few different jQuery technologies. After deciding to use Tablesorter (or any other sorting method), I found that I simply had to use it. I have a list of data and am in need of finding a method to sort it. There is a catch: it needs to also include the range slider. I have a table with ea...

JQuery Tablesort with hidden rows?

I have a table which uses the jquery hide() and show() to manipulate the standard view. However when i include the table sort it only sorts on the visible rows and not the hidden ones. Is there anyway to get it to sort on all the items? ...

Updating jQuery Tablesorter plugin after removing a row from DOM

Hey Guys I have some code at the moment that hides a row that is deleted and then removes it using the .remove() function. However I'm having difficulty is making it remain "deleted" as everytime i refresh the table sorted pager plugin or the filter plugin addon I'm using.. the deleted rows re-appear as they are of course cached. Curre...

Jquery Tablesorter - sort by column having <input> elements

I have a table like this: | Update | Name | Code | modification date | | | name1 | code1 | 2009-12-09 | | | name2 | otehercode | 2007-09-30 | Where the Update column contains checkboxes <input type='checkbox' />. The checkbox initial state is determined before rendering the t...

Jquery Tablesorter: sort numbers above letters

Hello, I work with jquery tablesorter to display music charts. So i have some columns with artist - song - chart position. The column chart position contains mainly numbers; but when a song is not listed in the chart is gets the value "-". This creates a sorting problem when i want to sort the column, because the values "-" will be sor...

how to get current sort order from tablesorter plugin?

I'm just starting to use Christian Bach's excellent TableSorter plugin, and I need to get a column's current sort direction. I have several columns: ID Name Category ID and Name are set to non-sortable using headers: { 0: {sorter: false}, 1: {sorter: false} } I'm adding a click handler on Name so that it fires the sort event ...

Tablesorter - Dates Problem

Hi! I know there have been some questions about this, but I can't seem to fix my problem. I'm loading a .csv file into tablesorter, but one of my columns are dates (Dec 23, 2009). But they sort as Dec 2, Dec 23, Dec 3, Dec 31 Does anyone know a solution? You can see the problem here, it's the table at the bottom. Thanks so much in adv...

how to reset the name attribute of a input control after a jquery action

i have an html table inside a form in an asp.net mvc view. I am using the tablesorter jquery plugin as well. Here is the table code (simplified for the example) <table id=managersTable> <thead> <tr> <th>Manager</th><th>Remove</th> </tr> </thead> <tbody> <tr> <td>Manager 1<input type='hidden' name='updat...

Dynamic Javascript in Partial Page Postback

I'm using the tablesorter jQuery plugin to do some sorting of my tables. The site I'm using this on is programmed in .Net 3.5 and I am using the ASP.NET AJAX and updatepanels to perform my asynchronous page updates. The problem I'm running into is when using the table sorter, I have some columns that I want to disable sorting on. I have...

Solved : Problem with tablesorter & Jquery sorting prices with Euro sign

Hello there, My question concerns the Jquery plugin Tablesorter : I've a problem with the sorting of a columns with prices, formatted like that : 135.35 €, 149.99 €, 1500 €, etc The sorting works well with the numbers only, but when i add the Euro symbol , the sorting is not working anyore. I have this ASC order for the third column...