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

Updated 2.2 Public methods (markdown)

koalyptus 2016-01-08 10:05:26 +11:00
parent 59a63d8265
commit 212d796878

@ -179,7 +179,7 @@
<td><code>myTF.getHeadersRowIndex();</code></td>
</tr>
<tr>
<th>getTableData(includeHeaders,excludeHiddenColumns)</th>
<th>getTableData(includeHeaders, excludeHiddenCols)</th>
<td><p>return an array containing all the data, optionally from only the visible columns (hidden using the colsVisibility extension). The
returned array is formated in the following manner: </p>
<pre>
@ -192,7 +192,7 @@
<ul>
<li>includeHeaders (optional): if set true header captions are included in
returned array (boolean)</li>
<li>excludeHiddenColumns (optional): if set true hidden columns are excluded from the
<li>excludeHiddenCols (optional): if set true hidden columns are excluded from the
returned array (boolean)</li>
</ul>
</td>
@ -200,7 +200,7 @@
<td><code>myTF.getTableData();</code></td>
</tr>
<tr>
<th>getFilteredData(includeHeaders,excludeHiddenColumns)</th>
<th>getFilteredData(includeHeaders, excludeHiddenCols)</th>
<td><p>return an array containing only the filtered data, optionally from only the visible columns (hidden using the colsVisibility extension). The returned array is formated in the following manner: </p>
<pre>
[
@ -212,7 +212,7 @@
<ul>
<li>includeHeaders (optional): if set true header captions are included in
returned array (boolean)</li>
<li>excludeHiddenColumns (optional): if set true hidden columns are excluded from the
<li>excludeHiddenCols (optional): if set true hidden columns are excluded from the
returned array (boolean)</li>
</ul></td>
<td></td>
@ -277,9 +277,15 @@
<td><code>var nbFilterableRows = myTF.getFilterableRowsNb();</code></td>
</tr>
<tr>
<th>getHeadersText()</th>
<th>getHeadersText(excludeHiddenCols)</th>
<td>return an array containing the header's text of each column</td>
<td></td>
<td>
Param:
<ul>
<li>excludeHiddenCols (optional): if set true hidden columns are excluded from the
returned array (boolean)</li>
</ul>
</td>
<td><code>var headers = myTF.getHeadersText();</code></td>
</tr>
</tbody>