[ADF-4947] Array type supported in data table columns (#5165)

* [WIP] [ADF-4947] Array type supported in data table columns

* * removed resolver for aria label

* * process services feature added

* * fixed docs
This commit is contained in:
dhrn
2019-10-18 04:31:52 +05:30
committed by Eugenio Romano
parent 12bbb993bd
commit baa0d6da30
34 changed files with 350 additions and 99 deletions

View File

@@ -20,7 +20,9 @@ import {
DataRowEvent,
DataTableAdapter,
CustomEmptyContentTemplateDirective,
CustomLoadingContentTemplateDirective
CustomLoadingContentTemplateDirective,
DataRow,
DataColumn
} from '@alfresco/adf-core';
import {
AppConfigService,
@@ -112,6 +114,13 @@ export class ProcessInstanceListComponent extends DataTableSchema implements On
@Input()
selectFirstRow: boolean = true;
/**
* Resolver function is used to show dynamic complex column objects
* see the docs to learn how to configure a resolverFn.
*/
@Input()
resolverFn: (row: DataRow, col: DataColumn) => any = null;
/** Emitted when a row in the process list is clicked. */
@Output()
rowClick: EventEmitter<string> = new EventEmitter<string>();