Ciao, ho una tabella a cui applico tablesorter con paginazione.
Ho una colonna dove converto in php i valori per far visualizzare i . delle migliaia.
L'ordinamento quindi non funziona più, ho aggiungo addParser ma qualcosa non funziona:
<script type="text/javascript">
$(document).ready(function() {
$.tablesorter.addParser({
id: "number",
is: function(s) {
return /^[0-9]?[0-9,\.]*$/.test(s);
},
format: function(s) {
return $.tablesorter.formatFloat( s.replace(/./g,'') );
},
type: "numeric"
});
$("#tabord")
.tablesorter({
theme: 'blue',
widgets: ["zebra"],
headers: {
0: { sorter: false },
2: { sorter: 'number' },
6: { sorter: false },
7: { sorter: false }
}
})
.tablesorterPager({
container: $("#pager")
});
});
</script>
Chi mi aiuta?
grazie mille
ciao![]()