...
- value1 = first field value to compare.
- value2 = second field value to compare.
- fieldName =name of the field that the grid is sorted by. (Available in Version 5, Fix Pack 6.0 and later)
- isDescending =true if sorting in descending sequence, false otherwise. (Available in Version 5, Fix Pack 6.0 and later)
- fieldDateFormat = date format of the field that the grid is sorted by, if the field is not a date null will be passed instead. (Available in Version 5, Fix Pack 14.0 and later)
- fieldFormat = formatting information of the field that the grid is sorted by, if the field does not contain any formatting information, a blank object will be passed instead. (Available in Version 5, Fix Pack 14.1 and later)
Example:
Code Block |
---|
pui.gridSort = function(value1, value2, fieldName, isDescending, fieldDateFormat, fieldFormat) {
if (value1 > value2) return -1;
else return 1;
}
|
...