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
da226707
Commit
da226707
authored
Oct 17, 2015
by
David Stutz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #578: disabledText option including documentation.
parent
e5f768c1
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
138 additions
and
16 deletions
+138
-16
bootstrap-multiselect.js
dist/js/bootstrap-multiselect.js
+11
-4
index.html
index.html
+127
-12
No files found.
dist/js/bootstrap-multiselect.js
View file @
da226707
...
...
@@ -230,13 +230,19 @@
* @returns {String}
*/
buttonText
:
function
(
options
,
select
)
{
if
(
options
.
length
===
0
)
{
if
(
this
.
disabledText
.
length
>
0
&&
(
this
.
disableIfEmpty
||
select
.
prop
(
'
disabled
'
))
&&
options
.
length
==
0
)
{
return
this
.
disabledText
;
}
else
if
(
options
.
length
===
0
)
{
return
this
.
nonSelectedText
;
}
else
if
(
this
.
allSelectedText
&&
options
.
length
===
$
(
'
option
'
,
$
(
select
)).
length
&&
$
(
'
option
'
,
$
(
select
)).
length
!==
1
&&
this
.
multiple
)
{
&&
options
.
length
===
$
(
'
option
'
,
$
(
select
)).
length
&&
$
(
'
option
'
,
$
(
select
)).
length
!==
1
&&
this
.
multiple
)
{
if
(
this
.
selectAllNumber
)
{
return
this
.
allSelectedText
+
'
(
'
+
options
.
length
+
'
)
'
;
...
...
@@ -390,6 +396,7 @@
allSelectedText
:
'
All selected
'
,
numberDisplayed
:
3
,
disableIfEmpty
:
false
,
disabledText
:
''
,
delimiterText
:
'
,
'
,
templates
:
{
button
:
'
<button type="button" class="multiselect dropdown-toggle" data-toggle="dropdown"><span class="multiselect-selected-text"></span> <b class="caret"></b></button>
'
,
...
...
index.html
View file @
da226707
This diff is collapsed.
Click to expand it.
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