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"
|
[actionsPosition]="actionsPosition"
|
||||||
[contextMenu]="showContextMenu"
|
[contextMenu]="showContextMenu"
|
||||||
[showMainDatatableActions]="showMainDatatableActions"
|
[showMainDatatableActions]="showMainDatatableActions"
|
||||||
|
[isResizingEnabled]="isResizingEnabled"
|
||||||
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
||||||
(showRowContextMenu)="onShowRowContextMenu($event)"
|
(showRowContextMenu)="onShowRowContextMenu($event)"
|
||||||
(executeRowAction)="onExecuteRowAction($event)"
|
(executeRowAction)="onExecuteRowAction($event)"
|
||||||
|
@@ -166,6 +166,10 @@ export class ProcessListCloudComponent extends DataTableSchema<ProcessListDataCo
|
|||||||
@Input()
|
@Input()
|
||||||
showMainDatatableActions: boolean = false;
|
showMainDatatableActions: boolean = false;
|
||||||
|
|
||||||
|
/** Toggles main datatable column resizing feature. */
|
||||||
|
@Input()
|
||||||
|
isResizingEnabled: boolean = false;
|
||||||
|
|
||||||
/** Emitted when a row in the process list is clicked. */
|
/** Emitted when a row in the process list is clicked. */
|
||||||
@Output()
|
@Output()
|
||||||
rowClick: EventEmitter<string> = new EventEmitter<string>();
|
rowClick: EventEmitter<string> = new EventEmitter<string>();
|
||||||
|
@@ -14,6 +14,7 @@
|
|||||||
[contextMenu]="showContextMenu"
|
[contextMenu]="showContextMenu"
|
||||||
[resolverFn]="boundReplacePriorityValues"
|
[resolverFn]="boundReplacePriorityValues"
|
||||||
[showMainDatatableActions]="showMainDatatableActions"
|
[showMainDatatableActions]="showMainDatatableActions"
|
||||||
|
[isResizingEnabled]="isResizingEnabled"
|
||||||
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
||||||
(showRowContextMenu)="onShowRowContextMenu($event)"
|
(showRowContextMenu)="onShowRowContextMenu($event)"
|
||||||
(executeRowAction)="onExecuteRowAction($event)"
|
(executeRowAction)="onExecuteRowAction($event)"
|
||||||
|
@@ -80,6 +80,10 @@ export abstract class BaseTaskListCloudComponent<T = unknown> extends DataTableS
|
|||||||
@Input()
|
@Input()
|
||||||
showMainDatatableActions: boolean = false;
|
showMainDatatableActions: boolean = false;
|
||||||
|
|
||||||
|
/** Toggles main datatable column resizing feature. */
|
||||||
|
@Input()
|
||||||
|
isResizingEnabled: boolean = false;
|
||||||
|
|
||||||
/** Emitted before the context menu is displayed for a row. */
|
/** Emitted before the context menu is displayed for a row. */
|
||||||
@Output()
|
@Output()
|
||||||
showRowContextMenu = new EventEmitter<DataCellEvent>();
|
showRowContextMenu = new EventEmitter<DataCellEvent>();
|
||||||
|
Reference in New Issue
Block a user