Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The variable pui.gridSort can be used customize the client side grid column sort

Example:

Code Block
pui.gridSort = function(value1, value2) {
 if (value1 > value2) return -1;
 else return 1;
}

...