mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
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:
@@ -11,6 +11,7 @@
|
||||
[actionsPosition]="actionsPosition"
|
||||
[contextMenu]="showContextMenu"
|
||||
[showMainDatatableActions]="showMainDatatableActions"
|
||||
[isResizingEnabled]="isResizingEnabled"
|
||||
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
||||
(showRowContextMenu)="onShowRowContextMenu($event)"
|
||||
(executeRowAction)="onExecuteRowAction($event)"
|
||||
|
@@ -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>();
|
||||
|
@@ -14,6 +14,7 @@
|
||||
[contextMenu]="showContextMenu"
|
||||
[resolverFn]="boundReplacePriorityValues"
|
||||
[showMainDatatableActions]="showMainDatatableActions"
|
||||
[isResizingEnabled]="isResizingEnabled"
|
||||
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
||||
(showRowContextMenu)="onShowRowContextMenu($event)"
|
||||
(executeRowAction)="onExecuteRowAction($event)"
|
||||
|
@@ -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>();
|
||||
|
Reference in New Issue
Block a user