Angular Selectbox
A simple two way select box.
Installing
npm install angular-selectbox
Usage
angular.module("MyModule", ['selectbox'])
.controller("MyCtrl", function($scope) {
$scope.data = [{
"title": "Example data" },
{
"title": "Another Example" }];
$scope.selectedData = [$scope.data[0]];
} );
HTML
<selectbox model-data="data" model="selectedData" field="'title'"></selectbox>
Looks better with:
bootstrap