Hello!
I want to export Blazor grid content to CSV and make some changes before export. This example works fine with GridCommandButton
Blazor Grid Export Export Events - Telerik UI for Blazor
I want to use a standard button instead of GridCommandButton.
<Button ..
OnClick="ExportGridData">
Export
</Button>
internal void ExportGridData() { gridRef?.ExportToCsv(); }
My issue is, executing ExportToCsv does not trigger OnBeforeExport. Is there a way to trigger OnBeforeExport when calling ExportToCsv() from a button click event?
Thank you.