Hello,
I've noticed the export to excel / csv function has a case sensitive filter, whereas the datagrid it is referencing does not. Is there a way I can remove this restriction from the excel / csv filter to match the datagrid?
Thanks,
Zach
Hello,
I've noticed the export to excel / csv function has a case sensitive filter, whereas the datagrid it is referencing does not. Is there a way I can remove this restriction from the excel / csv filter to match the datagrid?
Thanks,
Zach
What's the code used for export? Is it the auto-generated one for CRUD pages? The export in general will use directly DataGrid filters as string:
Here is also from default CRUD pages:
The filter is the generated default:
Filter = $"{(string.IsNullOrEmpty(grid0.Query.Filter)? "true" : grid0.Query.Filter)}"
Filter works as expected in the datagrid:
But exports blank
But exports correctly when capitalized:
Interesting. I am not sure if this is relevant but this is the only page so far I am having this issue with and it is using a view. The pages that are not using a view are performing just as you have demonstrated. I will keep troubleshooting though and appreciate the reply.