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!