TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
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
Forums
Monthly Leaders
Forum guidelines
Maragatha Mani
385
4.2k
762.1k
[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