-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
I've tried to sort by alphabet, but it can't work. Can it work?
script I am testing:
<body>
<div id="table">
</div>
<script>
var data = [
[ 'Rautavaara', '99.73 %' ],
[ 'Pelkosenniemi', '99.69 %' ],
[ 'Kiikoinen', '99.68 %' ],
[ 'Luhanka', '99.63 %' ],
[ 'Reisjrvi', '99.6 %' ],
[ 'Savukoski', '99.57 %' ]
];
var data_col = [
{ text: 'Kunta', sort: TableSort.alphabet},
{ text: 'Osuus', sort: TableSort.numeric}
]
TableSort(
'#table',
data_col,
data,
{ width: '400px', height: '300px' });
</script>
</body>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels