evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.14k stars 459 forks source link

Sorting with empty cell #195

Open vkhaitan opened 5 years ago

vkhaitan commented 5 years ago

If I am sorting table according to a floating column, it is not necessary that every cell would have a data. Suppose, a cell has got empty data, which is supposed to be last data in a sorted list, since it is not interesting, how to treat it? If I treat it like Minimum, then it would be in last for Desc order, but first in Asc order. There is no way to make sure that it always end up last. Is it possible to implement sorting for null values?

vkhaitan commented 5 years ago

I implemented the very easy fix in C# version now.