Closed Davidas84 closed 5 years ago
Hi David, The issue is not specific to our React integration. I was able to reproduce it using the following example: https://codepen.io/ArtemDevExpress/pen/gqjVbQ?editors=1010 The default Header Filter logic expects that you enable all remote operations including paging and grouping. Would you please clarify why you're using filtering only?
We are using ASP.Net Core + React DataGrid. When I set enableSearch property of headerFilter with remoteOperations={{ filtering: true }} and try to type something in the filter of string type column - it doesn’t work (on server side I receive DataSourceLoadOptions with filter value:
{[ null, "contains", "mySearchString" ]} Expected: {[ "docNumber", "contains", "mySearchString" ]})
However for dateTime type column it works well.
Thank you in advance for your help.