[jQuery] [Tablesorter] Problem with unsortable columns
Hi everybody,
I started using the great tablesorter 2.0 plugin. In one of my tables
all but two columns should be sortable. I use the following code to
achieve this:
<script type="text/javascript">
$(function() {
$("#spiele").tablesorter({sortList:[[1,1]], locale: 'de', headers:
{
// assign the secound column (we start counting zero)
6: {
// disable it by setting the property sorter to false
sorter: false
},
// assign the third column (we start counting zero)
7: {
// disable it by setting the property sorter to false
sorter: false
}
},widgets: ['zebra']});
});
</script>
That works fine. The only issue is, that the up-down arrows are still
visible in ALL columns. Shouldn't they disappear in those two, where I
set sorter to false?
Martin