Is there an easy way to globally augment the sort behavior while preserving the default sorting methods?
I know that I can set compareFunctionFactory
but this seems to completely override any default sorting behavior. I essentially want to pre-process the sorted values, but preserve the built-in text/numeric/date sorting afterwards, ie if the pre-sort returns 0, use the built-in sort.
It seems the built-in sorting methods are not exposed so I cannot call through to them.