Closed fnalin closed 7 years ago
IMPORTANT html: <input ngui-auto-complete [list-formatter]="autocompleListFormatter" [source]="urlEntidades" display-property-name="nomeEntidade" min-chars="2" loading-text="Carregando..." no-match-found-text="Não foram encontradas Entidades" id="entidade" class="form-control" [ngClass]="{'form-control-danger': entidadeValida && (selectEntidade.dirty || selectEntidade.touched), 'form-control-success': entidadeValida}" required name="selectEntidade"
placeholder="Mín. 2 caracteres" [(ngModel)]="entidadeSelecionada" autocomplete="off" />
ts: get urlEntidades() { return this._appSettingsService.urlBase('entidades/pesquisar/' + this.contextoId) + '/:keyword'; }
Other information
I need to pass a token through the header. For example: {Authorization: Bearer eyJhbGciO ...} How do I do this?
I found this: http://plnkr.co/edit/ExzNSh?p=preview
Thanks
IMPORTANT html: <input ngui-auto-complete [list-formatter]="autocompleListFormatter" [source]="urlEntidades" display-property-name="nomeEntidade" min-chars="2" loading-text="Carregando..." no-match-found-text="Não foram encontradas Entidades" id="entidade" class="form-control" [ngClass]="{'form-control-danger': entidadeValida && (selectEntidade.dirty || selectEntidade.touched), 'form-control-success': entidadeValida}" required name="selectEntidade"
selectEntidade="ngModel"
ts: get urlEntidades() { return this._appSettingsService.urlBase('entidades/pesquisar/' + this.contextoId) + '/:keyword'; }
Other information
I need to pass a token through the header. For example: {Authorization: Bearer eyJhbGciO ...} How do I do this?