I am looking for information on how to remove the default behavior where the 3rd click disables sort and stays "neutral" on sortable headers. Having a disable sort state seems flawed as it does not change the sort order. How can I eliminate the 3rd state and just make it toggle between ASC and DESC?
columns:any[] = [
{ name:'Email', field:'email' },
{ name:'Sessions', field:'sessionCount', enableSorting:false} //something like enableClearSorting:false
]