removeNestedLayoutSectionItem()
Home > @gooddata/sdk-ui-dashboard > removeNestedLayoutSectionItem
removeNestedLayoutSectionItem() function
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Creates the RemoveSectionItem command.
Signature:
export declare function removeNestedLayoutSectionItem(itemPath: ILayoutItemPath, stashIdentifier?: StashedDashboardItemsId, correlationId?: string): RemoveSectionItem;
Parameters
Parameter | Type | Description |
---|---|---|
itemPath | ILayoutItemPath | index from which to remove the item |
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. If the removed item was last in the section, the section will be left on the layout and will contain no items.
You may optionally specify the stashIdentifier in order to stash the removed item for later resurrection.