I just noticed that the value in component that is bind to a Inputfield is not updating when the input field's value is updated through jquery.
Component.ts
export class AppComponent{
searchString = "";
}
HTML
<input id="txSearchstring" type="text" [(ngModel)]="searchString" >
jquery
$('#txSearchstring').val('this is a test data');
when I tried to log the value of searchString, the value is still empty.
Any suggestions?