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

Updated 1.02 Main features (markdown)

koalyptus 2018-02-11 19:53:17 +11:00
parent 849f953255
commit 3df30e92c8

@ -149,18 +149,34 @@
</tr>
<tr>
<th>auto_filter</th>
<td>boolean</td>
<td>boolean|object</td>
<td>if set true this property enables the 'filter as you type' behaviour
(default - false)</td>
<td>table is filtered when user stops typing</td>
<td><code>var tfConfig = { auto_filter: true }</code></td>
<td>
<pre>
var tfConfig = { auto_filter: true };
// or
var tfConfig = {
auto_filter: {}
};
</pre>
</td>
</tr>
<tr>
<th>auto_filter_delay</th>
<th>auto_filter.delay</th>
<td>number</td>
<td>defines the filtering delay in milliseconds (default - 900)</td>
<td>when user stops typing, table is filtered after defined delay</td>
<td><code>var tfConfig = { auto_filter: true, auto_filter_delay: 1500 }</code></td>
<td>
<pre>
var tfConfig = {
auto_filter: {
delay: 250
}
};
</pre>
</td>
</tr>
<tr>
<th>external_flt_ids</th>