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

41 lines
1,022 B
HTML
Raw Normal View History

2015-06-09 10:46:08 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>{NAME} v{VERSION} - Auto-filter Demo</title>
<!-- @import partials/style.html -->
</head>
<body>
<h1>{NAME} v{VERSION}</h1>
<h2>Auto-filter demo</h2>
<p>
This demo features the auto-filter behaviour, the table is filtered as soon
as the user stops typing.
</p>
<!-- @import partials/pre.html -->
<!-- @import partials/countries-table.html -->
<!-- @import partials/tablefilter-script.html -->
<script data-config>
var filtersConfig = {
base_path: '../dist/tablefilter/',
auto_filter: true,
auto_filter_delay: 1100, //milliseconds
filters_row_index: 1,
remember_grid_values: true,
alternate_rows: true,
rows_counter: true,
2015-06-21 14:10:24 +02:00
rows_counter_text: "Rows: ",
2015-06-09 10:46:08 +02:00
btn_reset: true,
status_bar: true,
msg_filter: 'Filtering...'
};
var tf = new TableFilter('demo', filtersConfig);
tf.init();
</script>
<!-- @import partials/pre-inline-script.html -->
</body>
</html>