Want to build the ChatGPT based Apps? Start here
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
C# Corner Home
Technologies
Monthly Leaders
ASK A QUESTION
Forum guidelines
Maragatha Mani
561
4.2k
609.6k
[ngbTypeahead] using search lowercase
Aug 10 2018 12:53 AM
<div class="form-group">
<label class="control-label">Brandlabel>
<input name="brandName" type="text" class="form-control" [placeholder]="" [(ngModel)]="filter.company_id"
[ngbTypeahead]="searchBrand" maxlength="50" #brandName="ngModel" autocomplete="true">
</div>
How to bind value id to name using ngmodel in search lowercase
In dropdown i am getting
<select
[(ngModel)]="filter.company_id"
name="brandName"
class="form-control"
#brandName="ngModel">
<option value="0">All</option>
<option *ngFor="let brand of brands"
value="{{+brand.id}}">
{{brand.name}}
</option>
</select>
Reply
Answers (
0
)
Redirect to corresponding page from login button from popup
Which version of angular js is best to learn for begginers