Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap-multiselect
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap-multiselect
Commits
5991dd34
Commit
5991dd34
authored
Aug 19, 2014
by
David Stutz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#361.
parent
7508a430
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
53 deletions
+103
-53
index.html
index.html
+27
-0
bootstrap-multiselect.js
js/bootstrap-multiselect.js
+75
-51
bootstrap-multiselect.less
less/bootstrap-multiselect.less
+1
-2
No files found.
index.html
View file @
5991dd34
...
...
@@ -238,6 +238,14 @@ $(document).ready(function() {
$
(
'
option[value="cheese"]
'
,
$
(
'
#example51
'
)).
remove
();
$
(
'
option[value="tomato"]
'
,
$
(
'
#example51
'
)).
remove
();
});
$
(
'
#example53
'
).
multiselect
();
$
(
'
#example53-select
'
).
on
(
'
click
'
,
function
()
{
$
(
'
#example53
'
).
multiselect
(
'
select
'
,
'
cheese
'
);
});
$
(
'
#example53-deselect
'
).
on
(
'
click
'
,
function
()
{
$
(
'
#example53
'
).
multiselect
(
'
deselect
'
,
'
cheese
'
);
});
});
</script>
...
...
@@ -275,6 +283,25 @@ $(document).ready(function() {
Single selection without having the browser select the first option.
</td>
</tr>
<tr>
<td>
<div
class=
"btn-group"
>
<select
id=
"example53"
size=
"2"
>
<option
value=
"cheese"
>
Cheese
</option>
<option
value=
"tomatoes"
>
Tomatoes
</option>
<option
value=
"mozarella"
>
Mozzarella
</option>
<option
value=
"mushrooms"
>
Mushrooms
</option>
<option
value=
"pepperoni"
>
Pepperoni
</option>
<option
value=
"onions"
>
Onions
</option>
</select>
<button
class=
"btn btn-default"
id=
"example53-select"
>
Select cheese
</button>
<button
class=
"btn btn-default"
id=
"example53-deselect"
>
Deselect cheese
</button>
</div>
</td>
<td>
The `.multiselect('select', value, triggerOnChange)` method can also be used to select options in single selection mode. Of course, the `.multiselect('deselect', value, triggerOnChange)` method works as expected, as well.
</td>
</tr>
<tr>
<td>
<select
id=
"example2"
multiple=
"multiple"
>
...
...
js/bootstrap-multiselect.js
View file @
5991dd34
This diff is collapsed.
Click to expand it.
less/bootstrap-multiselect.less
View file @
5991dd34
/**
* bootstrap-multiselect.less
* https://github.com/davidstutz/bootstrap-multiselect
* Bootstrap Multiselect v0.9.8 (https://github.com/davidstutz/bootstrap-multiselect)
*
* Copyright 2012 - 2014 David Stutz
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment