src/modules/table/entities/table-row-actions.intf.ts
StarkTableRowActions interface
Properties |
|
isFixed |
isFixed:
|
Type : boolean
|
Optional |
Should the actions always be shown on the right side of the table (sticky) Default: |
import { StarkActionBarConfig } from "@nationalbankbelgium/stark-ui/src/modules/action-bar";
/**
* StarkTableRowActions interface
*/
export interface StarkTableRowActions extends StarkActionBarConfig {
/**
* Should the actions always be shown on the right side of the table (sticky)
*
* Default: `false`
*/
isFixed?: boolean;
}