I'm trying to get my list with my autogenerated code in backend but it wont display in the front end.
here's my code for getting the object
.TS.SERVICES
getNextId(){
return this.http.get(this.appSettings.baseURL +'Delivery/getNextSequence');
.TS COMPONENT
getNextDRId(){
this.microSvc.getNextId().subscribe((response: string) =>{
this.idObj = response;
})
}
.HTML
<mat-form-field class="full-width" >
<mat-label>Transaction #</mat-label>
<input matInput type="text" formControlName="transactionType" readonly
ngModel{{idObj}} >
</mat-form-field>