]> git.koha-community.org Git - koha.git/commit
Bug 6836: Add jQuery dataTables plugin
authorJulian Maurice <julian.maurice@biblibre.com>
Fri, 8 Jul 2011 12:29:19 +0000 (14:29 +0200)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Sun, 19 Feb 2012 20:51:18 +0000 (15:51 -0500)
commit5f36947783cbe43a9550b3ffc839a2956d59ae94
treef9a7e1c8ac7776dc005fa5d74821714daeb56360
parent1bba820ca7cbd7cd3a73bbdef509c61e45454bfb
Bug 6836: Add jQuery dataTables plugin

This patch add the javascript library, a CSS (and image files from
datatables.net) and another javascript file which provides some extra
features.
It also add a Perl module C4::Utils::Datatables which provides helpful
functions for server-side processing

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
(cherry picked from commit 8298250c49b6af3f88415e1daee748d4cd1574eb)

Signed-off-by: Chris Nighswonger <chris.nighswonger@gmail.com>
27 files changed:
C4/Utils/DataTables.pm [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/css/datatables.css [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/includes/datatables-strings.inc [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/js/datatables.js [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/back_disabled.jpg [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/back_enabled.jpg [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/forward_disabled.jpg [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/forward_enabled.jpg [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/sort_asc.png [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/sort_asc_disabled.png [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/sort_both.png [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/sort_desc.png [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/img/datatables/sort_desc_disabled.png [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/en/css/datatables.css [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/en/includes/datatables-strings.inc [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/en/js/datatables.js [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/back_disabled.jpg [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/back_enabled.jpg [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/forward_disabled.jpg [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/forward_enabled.jpg [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/sort_asc.png [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/sort_asc_disabled.png [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/sort_both.png [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/sort_desc.png [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/datatables/sort_desc_disabled.png [new file with mode: 0644]