103 lines
4.5 KiB
HTML
103 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en" ng-app="demo">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>AngularJS ui-select</title>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
IE8 support, see AngularJS Internet Explorer Compatibility http://docs.angularjs.org/guide/ie
|
|
|
|
For Firefox 3.6, you will also need to include jQuery and ECMAScript 5 shim
|
|
|
|
-->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
|
|
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/2.2.0/es5-shim.js"></script>
|
|
|
|
<script>
|
|
|
|
document.createElement('ui-select');
|
|
|
|
document.createElement('ui-select-match');
|
|
|
|
document.createElement('ui-select-choices');
|
|
|
|
</script>
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular.js"></script>
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular-sanitize.js"></script>
|
|
|
|
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.css">
|
|
|
|
|
|
|
|
<!-- ui-select files -->
|
|
|
|
<script src="../dist/select.js"></script>
|
|
|
|
<link rel="stylesheet" href="../dist/select.css">
|
|
|
|
|
|
|
|
<script src="demo.js"></script>
|
|
|
|
|
|
|
|
<!-- Select2 theme -->
|
|
|
|
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css">
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Selectize theme
|
|
|
|
Less versions are available at https://github.com/brianreavis/selectize.js/tree/master/dist/less
|
|
|
|
-->
|
|
|
|
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.default.css">
|
|
|
|
<!-- <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.bootstrap2.css"> -->
|
|
|
|
<!-- <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.bootstrap3.css"> -->
|
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2 > .select2-choice.ui-select-match {
|
|
|
|
/* Because of the inclusion of Bootstrap */
|
|
|
|
height: 29px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectize-control > .selectize-dropdown {
|
|
|
|
top: 36px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body ng-controller="DemoCtrl">
|
|
|
|
<script src="demo.js"></script>
|
|
|
|
|
|
|
|
<button class="btn btn-default btn-xs" ng-click="enableSearch()">Enable search</button>
|
|
|
|
<button class="btn btn-default btn-xs" ng-click="disableSearch()">Disable search</button>
|
|
|
|
|
|
|
|
<button class="btn btn-default btn-xs" ng-click="clear()">Clear ng-model</button>
|
|
|
|
|
|
|
|
<h3>Bootstrap theme</h3>
|
|
|
|
<p>Selected: {{person.selected}}</p>
|
|
|
|
<ui-select ng-model="person.selected" theme="bootstrap" search-enabled="searchEnabled" ng-disabled="disabled" style="min-width: 300px;" title="Choose a person">
|
|
|
|
<ui-select-match placeholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match>
|
|
|
|
<ui-select-choices repeat="person in people | propsFilter: {name: $select.search, age: $select.search}">
|
|
|
|
<div ng-bind-html="person.name | highlight: $select.search"></div>
|
|
|
|
<small>
|
|
|
|
email: {{person.email}}
|
|
|
|
age: <span ng-bind-html="''+person.age | highlight: $select.search"></span>
|
|
|
|
</small>
|
|
|
|
</ui-select-choices>
|
|
|
|
</ui-select>
|
|
|
|
|
|
|
|
<h3>Select2 theme</h3>
|
|
|
|
<p>Selected: {{person.selected}}</p>
|
|
|
|
<ui-select ng-model="person.selected" theme="select2" search-enabled="searchEnabled" ng-disabled="disabled" style="min-width: 300px;">
|
|
|
|
<ui-select-match placeholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match>
|
|
|
|
<ui-select-choices repeat="person in people | propsFilter: {name: $select.search, age: $select.search}">
|
|
|
|
<div ng-bind-html="person.name | highlight: $select.search"></div>
|
|
|
|
<small>
|
|
|
|
email: {{person.email}}
|
|
|
|
age: <span ng-bind-html="''+person.age | highlight: $select.search"></span>
|
|
|
|
</small>
|
|
|
|
</ui-select-choices>
|
|
|
|
</ui-select>
|
|
|
|
|
|
|
|
<h3>Selectize theme</h3>
|
|
|
|
<p>Selected: {{country.selected}}</p>
|
|
|
|
<ui-select ng-model="country.selected" theme="selectize" search-enabled="searchEnabled" ng-disabled="disabled" style="width: 300px;">
|
|
|
|
<ui-select-match placeholder="Select or search a country in the list...">{{$select.selected.name}}</ui-select-match>
|
|
|
|
<ui-select-choices repeat="country in countries | filter: $select.search">
|
|
|
|
<span ng-bind-html="country.name | highlight: $select.search"></span>
|
|
|
|
<small ng-bind-html="country.code | highlight: $select.search"></small>
|
|
|
|
</ui-select-choices>
|
|
|
|
</ui-select>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|