Perhaps you've seen, that sorting will use the default asc/desc image which sometimes makes the next column header unreadable. Workaround: These little Icons from Windows Explorer. Save them e.g. on
/images/sort*.png and change the path in
sorttable.js:
Code:
if (span.getAttribute("sortdir") == 'down') {
ARROW = ' <img src="/images/sortasc.png" />';
newRows.reverse();
span.setAttribute('sortdir','up');
} else {
ARROW = ' <img src="/images/sortdesc.png" />';
span.setAttribute('sortdir','down');
}
Example
Greetings, Bruno