I am using the angular grid, ui-grid, located at ui-grid.info.
I am trying to make a custom filter that will filter the grid by date using date inputs controls, one for
i have done it using a custom javascript method
condition: function(term, value){ if (!term) return true; var valueDate = new Date(value); var replaced = term.replace(/\\/g,''); var termDate = new Date(replaced); return valueDate < termDate; }, placeholder: 'less than'