I am trying to find a way when using data tables to always sort empty cells to the top instead of the bottom.
I have found a few ways to always force empty cells to the bottom but am new with data tables and am not sure how to get it to sort the empty cells always to the top.
I am trying to find a way when using datatables to always sorty null/empty cells to the top instead of the bottom.
For example if my data was as follows
| ACCOUNT # |
|-----------|
| |
| 035721576 |
| |
| 035721577 |
It would sort it either
| ACCOUNT # |
|-----------|
| |
| |
| 035721576 |
| 035721577 |
or
| ACCOUNT # |
|-----------|
| |
| |
| 035721577 |
| 035721576 |