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

Updated 2.2 Public methods (markdown)

koalyptus 2016-01-08 10:10:19 +11:00
parent 212d796878
commit 4827b277ee

@ -57,6 +57,16 @@
<td></td>
<td><code>myTF.feature('gridLayout');</code></td>
</tr>
<tr>
<th>extension(name)</th>
<td>retrieve an extension instance from the extensions registry
<ul>
<li>name: extension name (ie 'colsVisibility')</li>
</ul>
</td>
<td></td>
<td><code>myTF.extension('colsVisibility');</code></td>
</tr>
<tr>
<th>getFilterId(index)</th>
<td><p>return the filter id of the specified column:</p>
@ -278,14 +288,15 @@
</tr>
<tr>
<th>getHeadersText(excludeHiddenCols)</th>
<td>return an array containing the header's text of each column</td>
<td>
Param:
<p>return an array containing the header's text of each column</p>
Param:
<ul>
<li>excludeHiddenCols (optional): if set true hidden columns are excluded from the
returned array (boolean)</li>
</ul>
</td>
<td></td>
<td><code>var headers = myTF.getHeadersText();</code></td>
</tr>
</tbody>