- Selected rows:
-
+
+ {{ 'SETTINGS_CLOUD.SELECTED_ROWS' | translate }}:
+
+
+
+
{{ 'SETTINGS_CLOUD.ACTION.ACTION_MENU' | translate }}:
+
+
+ {{ 'SETTINGS_CLOUD.ACTION.TASK_ID' | translate }}: {{ selectedAction.id }}
+ {{ 'SETTINGS_CLOUD.ACTION.ACTION_TYPE' | translate }}: {{ selectedAction.actionType }}
+
+
+
+
{{ 'SETTINGS_CLOUD.ACTION.CONTEX_MENU' | translate }}:
+
+
+ {{ 'SETTINGS_CLOUD.ACTION.TASK_ID' | translate }}: {{ selectedContextAction.id }}
+ {{ 'SETTINGS_CLOUD.ACTION.ACTION_TYPE' | translate }}: {{ selectedContextAction.actionType }}
+
+
diff --git a/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts
index daa4aeed93..c264bae8c8 100644
--- a/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts
@@ -17,7 +17,7 @@
import { Component, ViewChild, OnInit, OnDestroy } from '@angular/core';
import { TaskListCloudComponent, TaskListCloudSortingModel, TaskFilterCloudModel } from '@alfresco/adf-process-services-cloud';
-import { UserPreferencesService, AppConfigService } from '@alfresco/adf-core';
+import { UserPreferencesService, AppConfigService, DataCellEvent } from '@alfresco/adf-core';
import { ActivatedRoute, Router } from '@angular/router';
import { CloudLayoutService } from './services/cloud-layout.service';
import { Subject } from 'rxjs';
@@ -48,10 +48,16 @@ export class TasksCloudDemoComponent implements OnInit, OnDestroy {
filterId;
multiselect: boolean;
selectedRows: string[] = [];
+ actionMenu: boolean;
+ contextMenu: boolean;
+ actions: any[] = [];
+ selectedAction: { id: number, name: string, actionType: string};
+ selectedContextAction: { id: number, name: string, actionType: string};
testingMode: boolean;
selectionMode: string;
taskDetailsRedirection: boolean;
+ private performAction$ = new Subject