eagerRemoveSectionItem()
Home > @gooddata/sdk-ui-dashboard > eagerRemoveSectionItem
eagerRemoveSectionItem() function
This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Creates the RemoveSectionItem configured to do eager remove of item.
Signature:
export declare function eagerRemoveSectionItem(sectionIndex: number, itemIndex: number, stashIdentifier?: StashedDashboardItemsId, correlationId?: string): RemoveSectionItem;
Parameters
Parameter | Type | Description |
---|---|---|
sectionIndex | number | index of section from which to remove the item |
itemIndex | number | index of item to remove |
stashIdentifier | StashedDashboardItemsId | (Optional) stash identifier to store the removed item under; if not specified the item will be removed |
correlationId | string | (Optional) specify correlation id to use for this command. this will be included in all events that will be emitted during the command processing |
Returns:
Remarks
Dispatching this command will result in removal of the item from a section and if the section only contains that item then the whole section will be removed as well.
You may optionally specify the stashIdentifier in order to stash the removed item for later resurrection.