Interface TableActionResolverContextOptions

Options controlling the result of TableActionResolver.createResolverContext.

interface TableActionResolverContextOptions {
    bulkActionIds: string[];
    rowActionIds: string[];
    tables: DataTableCollection;
}

Properties

bulkActionIds: string[]

IDs of BulkTableActions to resolve. The order of the IDs determines the order of the resolved actions. The expression ["*"] gets all available actions in a implementation-specific order.

rowActionIds: string[]

IDs of RowTableActions to resolve. The order of the IDs determines the order of the resolved actions. The expression ["*"] gets all available actions in a implementation-specific order.

The current data for which the actions should be resolved.

Generated using TypeDoc