Skip to content

Jerusalemsbell/angular-selectbox

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular Selectbox

A simple two way select box.

Alt text

Live Example

Installing

npm install angular-selectbox

Needs

bootstrap

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"></selectbox>

About

two-way select box

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published