Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using tablesorter for my tables. And now i want that alwasy the last header is disabled from sorting.

I have tryed this:

 $(".sorter")
 .tablesorter({widgets: ['zebra'], headers:{0:{sorter:false}, -1:{sorter:false}}})          
 .tablesorterPager({container: $("#pager"), positionFixed: false, size : 5 });

But that does not work... does somewone know a solution?

share|improve this question

1 Answer

up vote 1 down vote accepted

It is not a valid config to specify -1, try this

var $sorterTable = $(".sorter");

var tablesorterConfig = { widgets: ['zebra'], headers:{ 0:{sorter:false} } };

tablesorterConfig.headers[$sorterTable.find("thead th").length - 1] = { sorter:false };


$sorterTable
.tablesorter(tablesorterConfig)          
.tablesorterPager({container: $("#pager"), positionFixed: false, size : 5 });
share|improve this answer
i get then error: Uncaught SyntaxError: Unexpected token ( – Maanstraat Aug 15 '11 at 14:51
Please try my edited answer now. – ShankarSangoli Aug 15 '11 at 14:58
Still not working... i have edit my first post with all the code i use , maybe this helps you. – Maanstraat Aug 15 '11 at 15:02
Try now my edited answer. – ShankarSangoli Aug 15 '11 at 15:06
It is working, THNX! – Maanstraat Aug 15 '11 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.