map.apps Bundle APIs 4.20.2
    Preparing search index...

    Interface TableActionResolverContext

    An object of this kind lives only for the time a concrete UI is displayed. It provides a way to react to action state changes, e.g. when an action is hidden or deactivated. Additionally, it provides a way to conditionally render row actions.

    interface TableActionResolverContext {
        destroy(): void;
        getBulkActions(
            dataTable: DataTable,
        ): TableActionItem<BulkButtonTableAction>[];
        getRowActions(
            dataTable: DataTable,
            rowItem: TableItem,
        ): TableActionItem<RowButtonTableAction>[];
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Must be called by a UI to indicate that the context is no longer required.

      Returns void