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

updated getTableData and getFilteredData to reflect changes in 0.0.22 that now gives the options of excluding data from hidden columns

cjohnsonuk 2016-01-07 13:09:37 +00:00
parent 457e2f101e
commit 59a63d8265

@ -179,8 +179,8 @@
<td><code>myTF.getHeadersRowIndex();</code></td>
</tr>
<tr>
<th>getTableData(includeHeaders)</th>
<td><p>return an array containing all the data. The
<th>getTableData(includeHeaders,excludeHiddenColumns)</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>
[
@ -191,6 +191,8 @@
Param:
<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
returned array (boolean)</li>
</ul>
</td>
@ -198,9 +200,8 @@
<td><code>myTF.getTableData();</code></td>
</tr>
<tr>
<th>getFilteredData(includeHeaders)</th>
<td><p>return an array containing only the filtered data. The returned
array is formated in the following manner: </p>
<th>getFilteredData(includeHeaders,excludeHiddenColumns)</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>
[
[rowIndex, [value0, value1...]],
@ -210,6 +211,8 @@
Param:
<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
returned array (boolean)</li>
</ul></td>
<td></td>