I have hidden some columns using the code
<GridColumn Field="@nameof(DataEntryExternalUser.Name)" Editable="true" Visible="@IsVisible"/>
So when I edit in a pop-up form I set IsVisible=true;
The problem I have now is with exporting data. Only the visible columns is exported.
Can I somehow set IsVisible=true before triggering the export command?
Have tried setting it in the OnClick handler. Not working.<GridCommandButton OnClick="@ShowLoadingSign" Command="ExcelExport" Icon="file-excel">Export to Excel</GridCommandButton>