BlazorExportController Events
The ASP.NET Core Blazor-specific descendant of the ExportController class.Name | Description |
---|---|
Activated | Occurs when a Controller is activated. Inherited from Controller. |
AfterConstruction | Occurs after a Controller is created. Inherited from Controller. |
CustomExport | Occurs when executing the ExportController.ExportAction. Allows you to customize export options and/or implement a custom export. Inherited from ExportController. |
CustomGetDefaultFileName | Occurs when executing the ExportController.ExportAction. Allows you to customize the default name of the file to which data is exported. Inherited from ExportController. |
CustomizeGridExport | Fires before the export operation. |
Deactivated | Occurs after a Controller has been deactivated. Inherited from Controller. |
Disposed | Occurs when the component is disposed by a call to the Dispose() method. Inherited from Component. |
ExportActionItemsCreated | Occurs after the Export Action’s ChoiceActionBase.Items collection has been populated. Inherited from ExportController. |
Exported | Occurs when executing the ExportController.ExportAction, when the export is completed. Inherited from ExportController. |
FrameAssigned | Occurs after a Frame (Window) has been assigned to a Controller. Inherited from Controller. |
GridExported | Fires when the export operation finishes. |
ViewControlsCreated | Occurs after the controls have been created for the current Controller’s ViewController.View if the Controller has already been activated. Inherited from ViewController. |
ViewControlsDestroying | For internal use only. Inherited from ViewController. |
See Also