AAE-12274: Added support for column resizing to process and task lists (#8275)

* AAE-12274: Added support for column resizing to process and task lists

* AAE-12274: trigger travis
This commit is contained in:
Ehsan Rezaei
2023-02-20 14:42:25 +01:00
committed by GitHub
parent 4aa2e0eb87
commit f76e10ff09
4 changed files with 10 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
[actionsPosition]="actionsPosition"
[contextMenu]="showContextMenu"
[showMainDatatableActions]="showMainDatatableActions"
[isResizingEnabled]="isResizingEnabled"
(showRowActionsMenu)="onShowRowActionsMenu($event)"
(showRowContextMenu)="onShowRowContextMenu($event)"
(executeRowAction)="onExecuteRowAction($event)"

View File

@@ -166,6 +166,10 @@ export class ProcessListCloudComponent extends DataTableSchema<ProcessListDataCo
@Input()
showMainDatatableActions: boolean = false;
/** Toggles main datatable column resizing feature. */
@Input()
isResizingEnabled: boolean = false;
/** Emitted when a row in the process list is clicked. */
@Output()
rowClick: EventEmitter<string> = new EventEmitter<string>();

View File

@@ -14,6 +14,7 @@
[contextMenu]="showContextMenu"
[resolverFn]="boundReplacePriorityValues"
[showMainDatatableActions]="showMainDatatableActions"
[isResizingEnabled]="isResizingEnabled"
(showRowActionsMenu)="onShowRowActionsMenu($event)"
(showRowContextMenu)="onShowRowContextMenu($event)"
(executeRowAction)="onExecuteRowAction($event)"

View File

@@ -80,6 +80,10 @@ export abstract class BaseTaskListCloudComponent<T = unknown> extends DataTableS
@Input()
showMainDatatableActions: boolean = false;
/** Toggles main datatable column resizing feature. */
@Input()
isResizingEnabled: boolean = false;
/** Emitted before the context menu is displayed for a row. */
@Output()
showRowContextMenu = new EventEmitter<DataCellEvent>();