I did use primeng filter on turbo table but its not working with date which is having format "mm/dd/yyyy".
*ngIf="col.field === 'abc'"
pInputText
type="text"
(input)="
dt.filter(
$event.target.value,
'abc',
'contains'
)
"
class="p-column-filter"
/>
but it only works with number if I type in text box if I am entering "/" then it doesnt work.
I need a filter who can show result as per matching data from input and input is "07/02/2019 01:30:00"
its mm/dd/yyyy format
Could anyone help me into this?
Is there another way to solve this issue?
Thanks
Perhaps, you can use the p-calendar element instead of an input: Calendar. It would be like this:
And in your typescript code, you add:
I hope it helps you. Greetings!