Melloware
Melloware
in 8.6.1 it looks like it works in Menu Mode but not in Row Mode. Filter Mode Row : https://codesandbox.io/s/white-http-uwoofe?file=/src/demo/DataTableDemo.tsx Filter Mode Menu: https://codesandbox.io/s/silly-kowalevski-59cd2l?file=/src/demo/DataTableDemo.tsx
Similar to this other `suffix` related issue: https://github.com/primefaces/primereact/issues/2871
Integration Test: https://github.com/primefaces/primefaces/pull/9361
I can take a look its most likely the mask is triggering and onChange event
Can you try it without the mask. My guess is the change event never fired when you typed the date?
All I did was turn off the MASK onblur but nothing else of the component changed.
it does if I reinstate the change I just made and then you will get double AJAX requests. So you have to determine which you want more.
The InputMask doesn't allow me to get at the underlying events so I have to brute force removing the "blur" if you are using the mask. Let me try soemthing...
OK reverted. Because InputMask adds so many events under the covers I recommend if you really need this use case just stop using mask for now.
i have an idea let me look.