diff --git a/libs/angular-accelerator/src/lib/components/interactive-data-view/interactive-data-view.component.ts b/libs/angular-accelerator/src/lib/components/interactive-data-view/interactive-data-view.component.ts index 7594e0cd..3da45718 100644 --- a/libs/angular-accelerator/src/lib/components/interactive-data-view/interactive-data-view.component.ts +++ b/libs/angular-accelerator/src/lib/components/interactive-data-view/interactive-data-view.component.ts @@ -67,6 +67,8 @@ export class InteractiveDataViewComponent implements OnInit { @Input() page = 0 @Input() selectedRows: Row[] = [] @Input() displayedColumns: DataTableColumn[] = [] + @Input() frozenActionColumn = false + @Input() actionColumnPosition: 'left' | 'right' = 'right' @ContentChild('tableCell') tableCell: TemplateRef | undefined @ContentChild('tableDateCell') tableDateCell: TemplateRef | undefined @ContentChild('tableRelativeDateCell') tableRelativeDateCell: TemplateRef | undefined @@ -93,8 +95,6 @@ export class InteractiveDataViewComponent implements OnInit { isViewItemObserved: boolean | undefined isEditItemObserved: boolean | undefined firstColumnId: string | undefined - frozenActionColumn = false - actionColumnPosition: 'left' | 'right' = 'right' @Input() get paginator(): boolean {