IWithLoadingEvents
Home > @gooddata/sdk-ui > IWithLoadingEvents
IWithLoadingEvents interface
Signature:
export interface IWithLoadingEvents<TProps>
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
(error: GoodDataSdkError, props: TProps) => void |
(Optional) If specified, this function will be called in case loading runs into an error. | ||
(exportFunction: IExportFunction, props: TProps) => void |
(Optional) Called when loading finishes and it is possible to export the underlying data. Function that does the export will be provided on the callback. | ||
(isLoading: boolean, props: TProps) => void |
(Optional) Called when loading starts and finishes, indicating the current state using the | ||
(result: DataViewFacade, props: TProps) => void |
(Optional) Called when loading finishes. | ||
(props: TProps) => void |
(Optional) Called when loading starts. |