I have the following code for a select drop down input that is styled in Bootstrap.
You can try to add form, like:
HTML
-- Select Business Process -- {{v.value}} required
js
angular.module('myApp', []); function MyCtrl($scope, $timeout) { $scope.processes = [{ id: "C", value: "Process C" }, { id: "Q", value: "Process Q" }]; }
Demo Fiddle