-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
When data are provided as a table, sorting by numeric column returns data in incorrect order. This is caused by invalid sorting conditions in the _refreshData function:
if ($.isNumeric(aVal)) {
if (aVal < bVal) {
return 1;
} else if (aVal > bVal) {
return -1;
}
return 0;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels