Hi,
sorting GridPanel - null values are not sorted, empty values - are sorted OK.
Example:
before sort
COLUMN1
value3
null
value1


after sorting COLUMN1 ASC, it becomes:
COLUMN1
value1
null
value3

null stays untouched, usually user expects :
COLUMN1
null
value1
value3