In my application i am using Angular ui-grid to display set of data in a grid format . I want to filter these data based on a Date field called actionDate
. I want to filter data where the actionDate
is null
or not null
. I am using a simple dropdown to select this .
But the filtering doesn't work when this actionDate
field is not null . I think the reason this doesn't work is that the actionDate
field has different values and the ui-grid filter fails to understand that .
I have reproduced this issue in the following plunker. http://plnkr.co/edit/8rIJeA92hDYQ9vHDUC1C?p=preview
Appreciate if anyone can point me in the right direction .