naru
naru

Reputation: 129

Jqgrid sorting numeric order

As far as I know sorting in jqgrid will be like this sortname: 'Key', sortorder: "asc", but everytime the 'Key' shows it's not in numeric order. It looks like:

Key

1

10

100

1000

1001

1002

My output needed:

Key

1

2

3

4

5

Any help? Thanks

Upvotes: 0

Views: 2872

Answers (2)

R. Mo
R. Mo

Reputation: 185

you have to assign the sorttype:'int' inside the specific colModel that you want sorted

for ex. { name: 'Key', index: 'Key', width: 100, align: 'left', hidden: false, sorttype:'int' }

Upvotes: 1

Loïc MICHEL
Loïc MICHEL

Reputation: 26170

a extract of your code might be usefull... Try to specify the sorttype option to int in your colmodel http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colmodel_options

Upvotes: 1

Related Questions