Hi,
Issue:
I couldn’t find a way to reopen this thread.
My question is related to it. (Feel free to close it if it is a known issue.)
My app allows user to have multiple sort and the sorting relies on the remote sort.
However, when sort goes from “desc” to “undefined”, the second parameter of “beforeColumnSort” returns an empty array. I couldn’t know which column is actually reset to “undefined”.
You can see this by clicking the column “Id” in the demo you offered in above thread.
Cause
In the method “getColumnNextConfig”, when the sortOrder is “undefined”, it simply returns the null.
Expected
I think “getColumnNextConfig” should return { column: visual column index, sortOrder: undefined} in case the sortOrder is undefined.
Thanks,