liuwenchao / aha-table

A Polymer element for a searchable, sort-able, paginate-able, inline-editable, select-able, copy-able, removable data table or grid generated by JSON data.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sort Integer type data

gihubtravi opened this issue · comments

Hello
Column contains numbers and we want to enable user to sort them as integers.
What is the correct approach is recommended?

Currently they get sorted as string. so breaks for 11, 9, 1 as an example.

Make sure the numbers are passed as Number, like this:

[
{targetColumn: 2, otherColumn: 'xxx'},
{targetColumn: 9, otherColumn: 'xxx'},
{targetColumn: 11, otherColumn: 'xxx'},
{targetColumn: 1, otherColumn: 'xxx'}
]