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 have a sortable mootools table and would like to create one or two header columns unsortable. How can I do this. My code below:

var myTable = new HtmlTable({
    properties: {border: 0,  cellspacing: 0},
    headers: ['Column1', 'Column2', 'Column3', 'Column4'],
    rows: [],
    zebra: true,
    sortable: true
});

myTable.inject($('column2'));
myTable.sort(0);

I would like to sort only 'Column1' and 'Column2' Thanks!

share|improve this question

1 Answer

Try to set "table-th-nosort" class to your table header cell:

<th class="table-th-nosort">Not sortable</th>

Have a look to HtmlTable.Sort reference for classNoSort option.

share|improve this answer
headers: ['Column1', 'Column2', 'Column3', '<th class="table-th-nosort">Column4</th>'] this is not working... Thanks! – user889349 Jun 8 '12 at 10:34
Or where should I place nosort class? – user889349 Jun 8 '12 at 10:35
Add it to your markup, not the JS – MrJamin Jun 8 '12 at 11:42
How can I add this to my markup? It's created dynamically. – user889349 Jun 8 '12 at 12:06

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.