IRawExecuteProps
Home > @gooddata/sdk-ui > IRawExecuteProps
IRawExecuteProps interface
Props of the RawExecute component.
Signature:
export interface IRawExecuteProps extends IWithLoadingEvents<IRawExecuteProps>
Extends: IWithLoadingEvents<IRawExecuteProps>
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
children | (executionResult: WithLoadingResult) => React.ReactElement | null | Child component to which rendering is delegated. | |
enableExecutionCancelling? | boolean | (Optional) Optionally enable real execution cancellation. This means that if the execution request is not yet finished and the execution changes, the request will be cancelled and the new execution will be started. Default: false | |
ErrorComponent? | IExecuteErrorComponent | (Optional) Provide component for rendering of the error state. | |
execution | IPreparedExecution | Prepared execution which the executor will drive to completion and will obtain data from. | |
exportTitle? | string | (Optional) Name to use for files exported from this component. | |
LoadingComponent? | IExecuteLoadingComponent | (Optional) Provide component for rendering of the loading state. | |
loadOnMount? | boolean | (Optional) Indicates whether the executor should trigger execution and loading right after it is mounted. | |
window? | DataViewWindow | (Optional) Specifies whether RawExecute should load all data from backend or just a particular window - specified by offset and size of the window. |