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

Created 1.15 No results message (markdown)

koalyptus 2015-12-11 22:33:39 +11:00
parent 857b7950e9
commit 10314ebdca

@ -0,0 +1,32 @@
<p>Message appearing when a search yields no results.</p>
<table>
<thead>
<tr>
<th>Property</th>
<th>Type</th>
<th>Description</th>
<th>Remarks</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<th>no_results_message</th>
<td>boolean or literal object</td>
<td><p> enables / disables the message appearing when a search has no matches (default - false)</td>
<td>You can use this option as a literal object too</td>
<td>
<pre>
var tfConfig = { help_no_results_message: true };
// or
var tfConfig = {
help_no_results_message: {
content: 'Data not found'
}
};
</pre>
</td>
</tr>
</tbody>
</table>