Commit 536ca604 authored by David Stutz's avatar David Stutz

Merge branch 'master' of https://github.com/davidstutz/bootstrap-multiselect

Conflicts:
	index-2-3.html
	index.html
	js/bootstrap-multiselect.js
parents dcb6596a e7ad7cf6
...@@ -642,7 +642,22 @@ ...@@ -642,7 +642,22 @@
</pre> </pre>
</td> </td>
</tr> </tr>
<tr> <tr>
<td><code>nonSelectedText</code></td>
<td>A string that is displayed when no options are selected.</td>
<td>
<pre class="prettyprint linenums">
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {
$(&#39;.multiselect&#39;).multiselect({
nonSelectedText: 'You have not selected any options'
});
});
&lt;/script&gt;
</pre>
</td>
</tr>
<tr>
<td><code>buttonTitle</code></td> <td><code>buttonTitle</code></td>
<td>Function defining the title of the button. Similar to the <code>buttonText</code> option.</td> <td>Function defining the title of the button. Similar to the <code>buttonText</code> option.</td>
<td> <td>
...@@ -2229,6 +2244,7 @@ $(&quot;#multiselect&quot;).multiselect('dataprovider', data); ...@@ -2229,6 +2244,7 @@ $(&quot;#multiselect&quot;).multiselect('dataprovider', data);
</p> </p>
<p> <p>
<<<<<<< HEAD
<b>How to check whether filtering all options resulted no options being displayed (except the select all option)?</b> <b>How to check whether filtering all options resulted no options being displayed (except the select all option)?</b>
</p> </p>
...@@ -2295,6 +2311,27 @@ $('#example2').multiselect({ ...@@ -2295,6 +2311,27 @@ $('#example2').multiselect({
<p> <p>
This may be caused by several reasons one of which is described and resolved here: <a href="https://github.com/davidstutz/bootstrap-multiselect/pull/223">https://github.com/davidstutz/bootstrap-multiselect/pull/223</a>. This may be caused by several reasons one of which is described and resolved here: <a href="https://github.com/davidstutz/bootstrap-multiselect/pull/223">https://github.com/davidstutz/bootstrap-multiselect/pull/223</a>.
</p> </p>
<p>
<b>How to underline the searched text when using the filter?</b>
</p>
<p>
This issue is discussed <a href="https://github.com/davidstutz/bootstrap-multiselect/issues/309" target="_blank">here</a>.
</p>
<p>
<b>How to hide the checkboxes?</b>
</p>
<p>
A related issue is discussed <a href="https://github.com/davidstutz/bootstrap-multiselect/issues/205" target="_blank">here</a> and includes a possible solution when using CSS to hide the checkboxes:
</p>
<pre>
.multiselect-container input {
display: none
}
</pre>
</div> </div>
<div class="container"> <div class="container">
......
...@@ -680,7 +680,22 @@ ...@@ -680,7 +680,22 @@
</pre> </pre>
</td> </td>
</tr> </tr>
<tr> <tr>
<td><code>nonSelectedText</code></td>
<td>A string that is displayed when no options are selected.</td>
<td>
<pre class="prettyprint linenums">
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {
$(&#39;.multiselect&#39;).multiselect({
nonSelectedText: 'You have not selected any options'
});
});
&lt;/script&gt;
</pre>
</td>
</tr>
<tr>
<td><code>buttonTitle</code></td> <td><code>buttonTitle</code></td>
<td>Function defining the title of the button. Similar to the <code>buttonText</code> option.</td> <td>Function defining the title of the button. Similar to the <code>buttonText</code> option.</td>
<td> <td>
...@@ -2284,8 +2299,8 @@ $(&quot;#multiselect&quot;).multiselect('dataprovider', data); ...@@ -2284,8 +2299,8 @@ $(&quot;#multiselect&quot;).multiselect('dataprovider', data);
</div> </div>
<div class="page-header"> <div class="page-header">
<h1><a id="faq"></a>Frequently Asked Questions</h1> <h1><a id="faq"></a>Frequently Asked Questions</h1>
</div> </div>
<p> <p>
Here are some of the (not necessarily that frequently) asked questions and their answers. Here are some of the (not necessarily that frequently) asked questions and their answers.
...@@ -2374,6 +2389,27 @@ $('#example2').multiselect({ ...@@ -2374,6 +2389,27 @@ $('#example2').multiselect({
<p> <p>
This may be caused by several reasons one of which is described and resolved here: <a href="https://github.com/davidstutz/bootstrap-multiselect/pull/223">https://github.com/davidstutz/bootstrap-multiselect/pull/223</a>. This may be caused by several reasons one of which is described and resolved here: <a href="https://github.com/davidstutz/bootstrap-multiselect/pull/223">https://github.com/davidstutz/bootstrap-multiselect/pull/223</a>.
</p> </p>
<p>
<b>How to underline the searched text when using the filter?</b>
</p>
<p>
This issue is discussed <a href="https://github.com/davidstutz/bootstrap-multiselect/issues/309" target="_blank">here</a>.
</p>
<p>
<b>How to hide the checkboxes?</b>
</p>
<p>
A related issue is discussed <a href="https://github.com/davidstutz/bootstrap-multiselect/issues/205" target="_blank">here</a> and includes a possible solution when using CSS to hide the checkboxes:
</p>
<pre>
.multiselect-container input {
display: none
}
</pre>
</div> </div>
<div class="container"> <div class="container">
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment