1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-08 08:52:32 +02:00

Updated 1.15 No results message (markdown)

koalyptus 2015-12-11 22:47:18 +11:00
parent 26d90ab7a2
commit 704c830911

@ -52,7 +52,37 @@ var tfConfig = {
<pre>
var tfConfig = {
help_no_results_message: {
content: document.querySelector('.myClass');
content: document.querySelector('.my-class')
}
};
</pre>
</td>
</tr>
<tr>
<th>custom_container_id</th>
<td>string</td>
<td>Specify the ID of the element that will contain the no results message (default - null)</td>
<td></td>
<td>
<pre>
var tfConfig = {
help_no_results_message: {
content: 'container'
}
};
</pre>
</td>
</tr>
<tr>
<th>css_class</th>
<td>string</td>
<td>Define the css class for the element that will contain the no results message (default - null)</td>
<td>It also applies to an external custom element</td>
<td>
<pre>
var tfConfig = {
help_no_results_message: {
css_class: 'my-class'
}
};
</pre>