I have a column in my JQgrid which says 'size'. The return type is integer. I have added:
{
name:'sizeKloc',
index:'sizeKloc',
width:60,
editable:false,
sorttype: 'int',
align:'right'
},
There are some cases where the value is passed as null
.
My column has following values - 0, 3, 5, null (which is blank or space), 1, null (which is blank or space), null (which is blank or space), 2, 3
But when I try to sort ASC, the blanks should be first followed by actual number sorting which doesn't happen.
Any help is appreciated.