Pranesh Nair
Pranesh Nair

Reputation: 313

Table Sorter is not working proprly

I am using JQuery Table Sorter...Its working fine for all the fields except the year field in my grid view...Year Field is not sorted properly

This is my code:

 $(function()
 {
   $("table[id$='gvInvoiceDetails']").tablesorter({ headers: { 4 : {sorter :
    "currency"}},textExtraction:"complex", widgets: ['zebra']
   }).tablesorterPager({container: $("#pager")});                            
});

Any Suggesstions,Ideas,Samplecode

Thanks

Upvotes: 0

Views: 393

Answers (1)

codeandcloud
codeandcloud

Reputation: 55200

Check this out : Using jQuery tablesorter to sort mm/yy dates

Upvotes: 1

Related Questions