Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


Angular UI Grid - Sort on Custom Field
Use the column property 'sortingAlgorithm' to override the sort behavior.

Example:
columnDefs: [
{
sortingAlgorithm: function(a, b){
if(a == b)
return 0;
else
... etc.
}
}
]

Created By: amos 8/28/2018 10:42:08 AM
Updated: 8/28/2018 10:50:54 AM