From 30bcdd4534e88cf65552f3e96f51c03a5eb33748 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 14 Apr 2015 16:07:07 +0200 Subject: [PATCH] [PASSED QA] Bug 10235: Add DataTables filters on local use prefs There is no way to search for local use prefs. This patch provides an easy way to search for pref present in of local use prefs table. Test plan: 1/ Go on the system preferences administration page 2/ Click on the Local Use table 3/ Confirm you are able to filter the table by pref name or description using the DataTables filters on top of it. Signed-off-by: Mark Tompsett NOTE: Local use tab is distinct from other tabs, so implementing 'Search system preferences' across all tabs would be very difficult. This patch adds a filter to the Local Use tab, which nicely allows for filtering, as per Owen's suggestion in comment #1. Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt index 2d27d83..dba6c08 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt @@ -9,9 +9,9 @@ //t', "aoColumnDefs": [ - { "aTargets": [ -1, -2, -3, -4 ], "bSortable": false, "bSearchable": false } + { "aTargets": [ -1, -2, -3, -4 ], "bSortable": false } ], "bPaginate": false }));[% END %] -- 1.9.1