[ADF-3103] Added new inputs, columns and overall improvement to Task List Demo (#3653)

* Added columns, inputs and error message alert

* [ADF-3103] Fixed variable name typo

* Add basic documentation
This commit is contained in:
Maurizio Vitale
2018-08-03 15:06:13 +01:00
committed by Eugenio Romano
parent 8d8ab1e682
commit 547c56aeef
8 changed files with 150 additions and 22 deletions

View File

@@ -118,6 +118,8 @@ export class TaskQueryRequestRepresentationModel implements TaskQueryRequestRepr
sort: string;
page: number;
size: number;
taskId: string;
includeProcessInstance: boolean;
constructor(obj?: any) {
if (obj) {
@@ -131,6 +133,8 @@ export class TaskQueryRequestRepresentationModel implements TaskQueryRequestRepr
this.sort = obj.sort || null;
this.page = obj.page || 0;
this.size = obj.size || 25;
this.taskId = obj.taskId || null;
this.includeProcessInstance = obj.includeProcessInstance;
}
}
}