1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-13 20:06:59 +02:00

Added the grouped headers demo

This commit is contained in:
Max Guglielmi 2015-06-25 18:14:24 +10:00
parent 9337219b60
commit f5ec98c22a
3 changed files with 18692 additions and 0 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{NAME} v{VERSION} - Grouped Headers Demo</title>
<!-- @import partials/style.html -->
</head>
<body>
<h1>{NAME} v{VERSION}</h1>
<h2>Grouped headers demo</h2>
<p>
With grouped and/or multi-line headers, to place the filters row at desired
location, it is important to pay attention to the following configuration
properties:
</p>
<ul>
<li>
<code>filters_row_index</code> to set the position of the filters'
row
</li>
<li>
<code>headers_row_index</code> to specify the position of the
headers row - especially when the sort feature is enabled
</li>
</ul>
<p>
and equally inportant, specify the index of the row from which the filtering
process should start ie:
<code>var tf = new TableFilter('myTableId', myConfig, 3);</code>
</p>
<!-- @import partials/pre.html -->
<!-- @import partials/table-with-grouped-headers.html -->
<!-- @import partials/tablefilter-script.html -->
<script data-config>
var tfConfig = {
base_path: '../dist/tablefilter/',
col_0: "multiple",
col_1: "select",
col_2: "checklist",
col_number_format: [
null, null, 'US',
'US', 'US', 'US',
'US', 'US', 'US'
],
filters_row_index: 3,
headers_row_index: 2,
remember_grid_values: true,
highlight_keywords: true,
alternate_rows: true,
rows_counter: true,
btn_reset: true,
status_bar: true,
paging: true,
paging_length: 15,
enable_empty_option: true,
enable_non_empty_option: true,
enable_default_theme: true,
extensions: [{ name: 'sort' }]
};
var tf = new TableFilter('grouped-headers', tfConfig, 3);
tf.init();
</script>
<!-- @import partials/pre-inline-script.html -->
</body>
</html>