forked from mgcrea/angular-strap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.demo.html
More file actions
231 lines (221 loc) · 8.78 KB
/
select.demo.html
File metadata and controls
231 lines (221 loc) · 8.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<div class="bs-docs-section" ng-controller="SelectDemoCtrl">
<div class="page-header">
<h1 id="selects">Selects <a class="small" href="//github.com/mgcrea/angular-strap/blob/master/src/select/select.js" target="_blank">select.js</a>
</h1>
<code>mgcrea.ngStrap.select</code>
</div>
<h2 id="selects-examples">Examples</h2>
<p>Add quick, dynamic select functionality with any form text input.</p>
<div class="callout callout-danger">
<h4>Plugin dependency</h4>
<p>Selects require the <a href="#tooltips">tooltip module</a> and <a href="//github.com/mgcrea/angular-strap/blob/master/src/helpers/parse-options.js" target="_blank">parseOptions helper</a> module to be loaded.</p>
</div>
<h3>Live demo <a class="small edit-plunkr" data-module-name="mgcrea.ngStrapDocs" data-content-html-url="select/docs/select.demo.html" data-content-js-url="select/docs/select.demo.js" ng-plunkr data-title="edit in plunker" data-placement="right" bs-tooltip></a></h3>
<pre class="bs-example-scope">$scope.selectedIcon = {{ !selectedIcon ? '""' : selectedIcon}};
$scope.selectedIcons = {{selectedIcons}};
$scope.icons = {{icons}};
</pre>
<div class="bs-example" style="padding-bottom: 24px;" append-source>
<label>Single select: </label>
<button type="button" class="btn btn-default" ng-model="selectedIcon" data-html="1" bs-options="icon.value as icon.label for icon in icons" bs-select>
Action <span class="caret"></span>
</button>
<hr>
<label>Multiple select: </label>
<button type="button" class="btn btn-default" ng-model="selectedIcons" data-html="1" data-multiple="1" data-animation="am-flip-x" bs-options="icon.value as icon.label for icon in icons" bs-select>
Action <span class="caret"></span>
</button>
</div>
<h2 id="selects-usage">Usage</h2>
<p>Append a <code>bs-select</code>attribute to any element to enable the directive.</p>
<p>Available items are specified using the <code>bs-options</code> attribute. This attribute uses AngularJS <a href="https://docs.angularjs.org/api/ng/directive/ngOptions" target="_blank">ngOptions</a> array data source syntax.</p>
<div class="callout callout-danger">
<h4>Breaking Change</h4>
<p>If you are using AngularStrap prior to version 2.2.0, please use <code>ng-options</code> instead of <code>bs-options</code>.</p>
</div>
<div class="callout callout-info">
<h4>The module exposes a <code>$select</code>service</h4>
<p>Available for programmatic use (mainly in directives as it requires a DOM element).</p>
<div class="highlight">
<pre>
<code class="javascript" highlight-block>
var mySelect = $select(element, controller);
</code>
</pre>
</div>
</div>
<h3>Options</h3>
<p>Options can be passed via data-attributes on the directive or as an object hash to configure the service. For data attributes, append the option name to <code>data-</code>, as in <code>data-animation=""</code>.</p>
<div class="callout callout-info">
<h4>This module supports exotic placement options!</h4>
<p>You can position your select in corners (such as <code>bottom-left</code>) or any other combination two.</p>
<p>Exotic placement options are not part of the Bootstrap's core, to use them you must use <code>bootstrap-additions.css</code> from the <a href="//github.com/mgcrea/bootstrap-additions" target="_blank">BootstrapAdditions</a> project. This project being not yet fully released, meanwhile, you can use the <a href="//mgcrea.github.io/angular-strap/static/styles/bootstrap-additions.min.css" target="_blank">development snapshot</a> compiled for theses docs.</p>
</div>
<div class="table-responsive">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th style="width: 100px;">Name</th>
<th style="width: 100px;">type</th>
<th style="width: 50px;">default</th>
<th>description</th>
</tr>
</thead>
<tbody>
<tr>
<td>animation</td>
<td>string</td>
<td>am-fade</td>
<td>apply a CSS animation powered by <code>ngAnimate</code></td>
</tr>
<tr>
<td>placement</td>
<td>string</td>
<td>'bottom-left'</td>
<td>
how to position the select - top | bottom | left | right | auto, or any combination like bottom-left or auto bottom-left.<br>
When "auto" is specified, it will dynamically reorient the select. For example, if placement is "auto left", the select will display to the left when possible, otherwise it will display right.
</td>
</tr>
<tr>
<td>trigger</td>
<td>string</td>
<td>'focus'</td>
<td>how select is triggered - click | hover | focus | manual</td>
</tr>
<tr>
<td>html</td>
<td>boolean</td>
<td>false</td>
<td>replace <code>ng-bind</code> with <code>ng-bind-html</code>, requires <code>ngSanitize</code> to be loaded</td>
</tr>
<tr>
<td>delay</td>
<td>number | object</td>
<td>0</td>
<td>
<p>delay showing and hiding the select (ms) - does not apply to manual trigger type</p>
<p>If a number is supplied, delay is applied to both hide/show</p>
<p>Object structure is:
<code>delay: { show: 500, hide: 100 }</code>
</p>
</td>
</tr>
<tr>
<td>container</td>
<td>string | false</td>
<td>false</td>
<td>
<p>Appends the select to a specific element. Example:
<code>container: 'body'</code>. This option is particularly useful in that it allows you to position the select in the flow of the document near the triggering element - which will prevent the select from floating away from the triggering element during a window resize.</p>
</td>
</tr>
<tr>
<td>template</td>
<td>path | id</td>
<td>'$select'</td>
<td>
<p>If provided, overrides the default template, can be either a remote URL or a cached template id.</p>
</td>
</tr>
<tr>
<td>multiple</td>
<td>boolean</td>
<td>false</td>
<td>
<p>Whether multiple selections should be allowed.</p>
</td>
</tr>
<tr>
<td>all-none-buttons</td>
<td>boolean</td>
<td>false</td>
<td>
<p>Show the buttons to select and deselect all items at once.</p>
</td>
</tr>
<tr>
<td>allText</td>
<td>string</td>
<td>'All'</td>
<td>
<p>Sets the text for the select all button.</p>
</td>
</tr>
<tr>
<td>noneText</td>
<td>string</td>
<td>'None'</td>
<td>
<p>Sets the text for the select none button.</p>
</td>
</tr>
<tr>
<td>max-length</td>
<td>number</td>
<td>3</td>
<td>
<p>Maximum number of selected values that can be displayed inline.</p>
</td>
</tr>
<tr>
<td>max-length-html</td>
<td>string</td>
<td>'selected'</td>
<td>
<p>Placeholder to append to an overflowed multiple selection.</p>
</td>
</tr>
<tr>
<td>sort</td>
<td>boolean</td>
<td>true</td>
<td>
<p>Sort the order of the displayed labels.</p>
</td>
</tr>
<tr>
<td>placeholder</td>
<td>string</td>
<td>'Choose among the following...'</td>
<td>
<p>Placeholder text when no value is selected.</p>
</td>
</tr>
<tr>
<td>iconCheckmark</td>
<td>string</td>
<td>'glyphicon glyphicon-ok'</td>
<td>
<p>CSS class for 'checkmark' icon.</p>
</td>
</tr>
<tr>
<td>id</td>
<td>string</td>
<td>''</td>
<td>
The select instance id for usage in event handlers.
</td>
</tr>
</tbody>
</table>
</div>
<div class="callout callout-info">
<h4>Default options</h4>
<p>You can override global defaults for the plugin with <code>$selectProvider.defaults</code></p>
<div class="highlight">
<pre class="bs-exemple-code">
<code class="javascript" highlight-block>
angular.module('myApp')
.config(function($selectProvider) {
angular.extend($selectProvider.defaults, {
animation: 'am-flip-x',
sort: false
});
})
</code>
</pre>
</div>
</div>
</div>