ax5ui / ax5ui-grid

Javascript UI Component - GRID ( Excel Grid, jqGrid, angularjs grid, jquery grid, SlickGrid, ag-grid gridify)
http://ax5.io/ax5ui-grid/demo/index.html
MIT License
99 stars 36 forks source link

숫자 타입에 money formatter를 적용하고, 숫자 형식으로 sort를 하고 싶습니다. #88

Open kshneo opened 7 years ago

kshneo commented 7 years ago

35542000 8320000 4760900

위 세개의 숫자를 money format을 적용하여 정렬하면

8,320,000 4,760,900 35,542,000

위와 같이 정렬 됩니다. format을 유지한 상태에서 숫자형으로 정렬을 할수 있는 방법이 있으면 좋겠습니다.

thomasJang commented 7 years ago

정렬시에 formatter 전 데이터로 처리 할겁니다. Json데이터가 string인지 먼저 봐주세요

kshneo commented 7 years ago

네. 넘어온 데이터가 String 타입이었네요. 숫자형으로 바꿔서 해결했습니다. 감사합니다.