Reputation:
What is the best select box in angular only (No dependency from jQuery)?
I have seen lots of select box in jQuery, but this time I do my project only in angular.
Thank you
Upvotes: 1
Views: 205
Reputation: 601
You could use, for example:
Bootstrap dropdown in an Angular way: https://angular-ui.github.io/bootstrap/#/dropdown
Angular material select component: https://material.angularjs.org/latest/demo/select
another Angular module which does that: http://jseppi.github.io/angular-dropdowns/
Upvotes: 1