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

Updated 1.18 Mark active columns (markdown)

koalyptus 2017-11-08 13:59:23 +11:00
parent ac246aaf87
commit e68cde8cad

@ -37,6 +37,36 @@ var tfConfig = {
mark_active_columns: {
header_css_class: 'myCssClass'
}
};
</pre>
</td>
</tr>
<tr>
<th>cell_css_class</th>
<td>string</td>
<td>Css class applied to the cell of the filtered column (default - 'activeCell')</td>
<td></td>
<td>
<pre>
var tfConfig = {
mark_active_columns: {
cell_css_class: 'myCssClass'
}
};
</pre>
</td>
</tr>
<tr>
<th>highlight_column</th>
<td>boolean</td>
<td>Highlight whole filtered column (default - false)</td>
<td></td>
<td>
<pre>
var tfConfig = {
mark_active_columns: {
highlight_column: true
}
};
</pre>
</td>