[ADF-1595] Typeahead - Fetch the value from the process variables (#2388)

* Get the typeahead value from the process variables. We should not use the processDefinition to get again all the values

* Improve the dropdown widget
This commit is contained in:
Maurizio Vitale
2017-09-28 15:22:26 +01:00
committed by Popovics András
parent 9673772f50
commit e3ab50b4a1
10 changed files with 111 additions and 29 deletions

View File

@@ -105,4 +105,8 @@ export class DropdownWidgetComponent extends WidgetComponent implements OnInit {
this.logService.error(error);
}
isReadOnlyType(): boolean {
return this.field.type === 'readonly' ? true : false;
}
}