Commit f4de3f9c authored by David Stutz's avatar David Stutz

nonSelectedText documentation.

parent 3dd20ef6
...@@ -642,6 +642,21 @@ ...@@ -642,6 +642,21 @@
</pre> </pre>
</td> </td>
</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> <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>
......
...@@ -680,6 +680,21 @@ ...@@ -680,6 +680,21 @@
</pre> </pre>
</td> </td>
</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> <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>
......
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