BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ejs-dropdownlist formControlName="skillname" name="skillname" [dataSource]='autoreactiveskillset'
[placeholder]='autoreactiveplaceholder'>
</ejs-dropdownlist>
<button style="float:right" type="button" (click)="setDefaultValue()">Set Value</button>
|
public autoreactiveskillset: string[] = [
'ASP.NET', 'ActionScript', 'Basic',
'C++', 'C#', 'dBase', 'Delphi',
'ESPOL', 'F#', 'FoxPro', 'Java',
'J#', 'Lisp', 'Logo', 'PHP'
];
setDefaultValue() {
this.userForm.setValue({ name: 'John', skillname: 'Delphi', age: 20 });
} |
Hi Narayanasamy,
I've tested agains your code and now is working fine.
Jose