Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

The variable pui.gridSort can be used customize the client side grid column sort by defining a sort function.

Example:

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

This function could be used to control the order numerals and characters are sorted.

  • No labels