Tagged Questions
tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes.
12
votes
6answers
18k views
JQuery tablesorter problem
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 ...
7
votes
6answers
4k views
tablesorter with jquery does not sort numbers correct
Trying for days now (2 that is) to get tablesorter with Jquery to get the numbers correctly sorted.
I am using the last versions of both scripts.
The table is rendered fine, but sorting of the ...
7
votes
4answers
4k views
jquery tablesorter plugin - retain alternative row colors
i took an html table that i am applying alternative row colors and i just added jquery table sorter on it so users can sort the table.
the issue is that the alternative row colors are all messed up ...
7
votes
3answers
8k views
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 ...
6
votes
2answers
196 views
TableSorter loses header text
I'm using tablesorter in an asp:GridView and works fine but this been bother me for some time
Every time there is a button action (firing up a call to the server, refreshing the page), table sorter ...
6
votes
4answers
4k views
How to get jQuery Tablesorter to sort descending by default?
I can't figure this out. This question was also asked here http://www.nabble.com/TableSorter-plugin---default-column-sort-DESC-instead--How--to25180761s27240.html#a25180761 with no response.
I've ...
6
votes
1answer
4k views
Custom Parser for JQuery Tablesorter
I'm using the jQuery Tablesorter and have an issue with the order in which parsers are applied against table columns. I'm adding a custom parser to handle currency of the form $-3.33.
...
6
votes
5answers
14k views
JQuery tablesorter + resizing column widths
I'm looking for a JQuery plugin for resizing table columns that works with tablesorter. Any recommendations?
5
votes
7answers
7k views
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 ...
5
votes
3answers
8k views
Problem with sorting dates with jquery tablesorter
I am using tablesorter plugin to sort my tables in an MVC .NET App. Most of my columns are strings and I'm having no problems with them. Neither with the numeric ones. The thing is my datetime columns ...
4
votes
1answer
145 views
Tablesorter, sub group sorting
I've tried to make a widget that can sort a group of rows separately inside a table and at the same time make the row-group to stick with "grouped rows". I can't figure out how to approach this ...
4
votes
4answers
571 views
Using jQuery TableSorter to Sort Columns Containing Drop-down (SELECT) Tags and Dollar Signs ($)
I am using the fabulous jQuery TableSorter plugin to automatically add sorting functionality to the columns of a table (simply by clicking on each column's header). This works flawlessly for all ...
4
votes
1answer
1k views
jQuery Sortable Table plugin for Rails 3 Recommendation
Inside a Rails 3 app, what jQuery plugin for sortable tables / grids would you recommend that satisfies these conditions:
integrates well with Rails 3
sort columns
resize columns
filter columns
...
4
votes
4answers
268 views
Sorting Table Columns with jQuery Table Sorter
I was wondering if there's a way to sort columns with Table sorter
So that I could arrange the columns themselves according to some ID or anything.
So here for instance, If I want to sort the ...
4
votes
1answer
1k views
tablesorter pager
I'm working with tablesorter and I've not been able to find any documentation about the plugin tablesorter pager. The thing is that I have a table that displays some data and in each row there is a ...
4
votes
3answers
1k views
javascript table sorting/paging (client-side). How big is too big?
I'm using a jQuery plugin called Tablesorter
to do client-side sorting of a log table in one of my applications. I am also making use of the tablepager add-in.
I really like the responsiveness that ...
4
votes
1answer
248 views
Jquery Tablesorter custom date
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
4
votes
7answers
7k views
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 ...
4
votes
2answers
4k views
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 ...
4
votes
2answers
4k views
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 ...
4
votes
1answer
1k views
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 ...
3
votes
1answer
377 views
tablesorter empty table cell problem
I have a big table and want to sort using tablesorter. The problem I'm dealing with is that tablesorter act as 0 for empty cells when sorting with numbers. How can I push the empty cells to bottom?
...
3
votes
1answer
282 views
jQuery find() works in IE, but not Chrome or Firefox
I'm setting up custom textExtraction for the jQuery plugin tablesorter control (which is probably irrelevant) and the sort works in IE, but not Chrome or Firefox. Here's a snippet of the JavaScript ...
3
votes
2answers
2k views
jQuery Tablesorter error
Just updated to the latest tablesorter and looks like its broken or something. Everytime i try to open my page, firebug says:
table.config.parsers is undefined
and it just break the whole javascript.
...
3
votes
5answers
1k views
jQuery tablesorter plugin does not work after AJAX call
I have used jQuery table sorter plugin in my code. It works fine as long as I don't make an ajax request to load the table data dynamically. I am using combo boxes to filter the contents of the table ...
3
votes
1answer
3k views
tablesorter pager initial pagination
This might sound like a very stupid question to some of you, but I assure you I've been checking through the internet and I haven't had any luck about this. My question is: is it possible to set an ...
3
votes
4answers
894 views
On asp:Table Control how do we create a thead?
From an MSDN article on the subject, we can see that we create a TableHeaderRowthat contains TableHeaderCells.
But they add the table header like this:
myTable.Row.AddAt(0, headerRow);
which ...
3
votes
1answer
3k views
Need Help with Jquery TableSorter Pager plugin
I am using the tablesorter plugin: http://tablesorter.com/docs/ with jquery 1.4.2
Now my problem is this. The user can dynamically add rows to the table. But this seems to mess up the paging. Like ...
3
votes
3answers
1k views
Jquery Tablesorter sort same column after update
I have a table which is updated with ajax and after update it if sorted but I need to sort not a fixed column but the same column which was last clicked before update.
function tableUpdated() {
...
3
votes
1answer
2k views
TableSorter 2.0 Plugin - Enable Table scroll
I am using the Tablesorter plugin and it works great. Currently, I achieve table scrolling using a div wrapper. Is it possible to make the table scroll, keeping the headers visible while scrolling and ...
3
votes
2answers
2k views
Jquery Tablesorter, sorting by link url rather than link content
I am using Tablesorter on a table which uses links in the first column (of 4). The problem is that in FF and Chrome it orders the first column when clicked by url not the content of the link. For ...
3
votes
6answers
7k views
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 ...
3
votes
3answers
3k views
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 ...
2
votes
1answer
19 views
tablesorter update
I have a table which is updated with ajax and I need to pass headers as well as sorting using trigger update.
I am trying like below but its not working :
$(".tablesorter").trigger("update");
var ...
2
votes
1answer
46 views
Knockout.js with jQuery tablesorter
I try to sort a table, generated from a Knockout.js template. The problem ist that jquery Tablesorter kind of caches all the tr's. I'm aware of tablesorters .trigger("update") but I don't know where ...
2
votes
2answers
33 views
jQuery Tablesorter not sorting columns
I am parsing an XML file into a table and want to use the jquery tablesorter. Now that I've got the error to go away for tablesorter not existing, my data is populating in the table but the headers ...
2
votes
2answers
126 views
jquery tablesorter CSS arrow icons
This is really more of a CSS question than a jQuery question. I'm using the tablesorter jQuery plugin to sort tables dynamically.
Here's what it looks like currently:
Here's the CSS code that I'm ...
2
votes
2answers
148 views
Spaces between table rows with borders in CSS
I'm trying to display a table where each table row has a rounded border. I'm looking to add spaces between these borders and not within the row itself. Originally, I had an additional row in between ...
2
votes
1answer
202 views
Sorting multiple tables with tablesorter
I'm using the jQuery tablesorter plugin to allow users to sort tables of data on our site. I recently came across an area where multiple tables using the tablesorter were going to be displayed on the ...
2
votes
1answer
191 views
jQuery Tablesorter on two tables
For my tables I have a fixed header and scrollable data. This is achived by using two tables and wrapping the data in a div with overflow auto (this is because <tbody> cannot have scrollable ...
2
votes
4answers
111 views
Table sort problem
I am trying to use sortable, a jQuery plugin and while it works great I noticed that when I have a missing value in a column in addition to other values that start either with a letter or a number, ...
2
votes
2answers
727 views
jQuery + TableSorter: Error when table is empty
jQuery's plugin TableSorter doesn't seem to handle a situation where it is attached to an empty table. Is there a neat way around this?
In my application the user can filter and search the data and ...
2
votes
2answers
221 views
TableSorter jQuery RegExp not working on IE7
I created a new parser for the tablesorter javascript plugin, which works fine in all browsers but IE7!
$.tablesorter.addParser({
id: 'currencyXYZ',
is: function (s) {return ...
2
votes
2answers
258 views
Tablesorter configuration headers
Is there a way to configure tablesorter headers by ids or classes instead of column number?
So instead of this:
headers:
{ 0: { sorter: 'digit' } ,
1: { sorter: false }
}
I'd ...
2
votes
1answer
554 views
swt table turn off sort arrows in column header
I have the following code which allows the columns in my table to sort by ascending or descending order.
protected void setSortColumn(GridPanelColumn gridPanelColumn, TableColumn column) {
...
2
votes
2answers
364 views
jQuery/Tablesorter: maintain secondary alphabetical sort
I have a table of names and ages that I want the user to be able to sort. When the page initally loads, sortList lists the rows in order from oldest to youngest, and then secondarily from A to Z.
I ...
2
votes
1answer
375 views
tablesorter header set to sort false, but still sorts
I implemented the jquery tablesorter and am trying to set one column to not sort. I followed the documentation but something isn't working because it still sorts. Here is the code.
I copied the whole ...
2
votes
1answer
376 views
Nested tables with tablesorter
I have nested tables within a table that has the tablesorter applied to it.
It adds sort headers to the nested tables, but they don't sort the rows and a Javascript error is thrown.
I would like ...
2
votes
2answers
371 views
[quicksearch] How to determine 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 ...
2
votes
4answers
1k views
jQuery tablesorter - rowspan in headers causes odd behavior
Example of failure:
http://progamonth.com/files/testfile.html
Desired Behavior:
Ideally, any headers with a colspan shouldn't affect sorting. Right now, they receive sorting buttons, and even if I ...