Currently UniDataTable support sorting by multiple columns. For example, clicking on a column [First Name] and then on a column [Last Name] will result in ORDER BY FirstName, LastName.
This is not always desired, because:
It's not visible from the UI point of view, what is the columns order in the ORDER BY clause.
It requires many clicks to reset sorting.
Sometimes (rather often), it's more appropriate to allow sorting by a single column at a time.
There should be a flag to enable or disable multi-columns sorting mode.
Currently UniDataTable support sorting by multiple columns. For example, clicking on a column
[First Name]
and then on a column[Last Name]
will result inORDER BY FirstName, LastName
.This is not always desired, because:
ORDER BY
clause.There should be a flag to enable or disable multi-columns sorting mode.