Bugzilla – Attachment 14748 Details for
Bug 9429
Use DataTables on Authorized Values page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 9429 - Use DataTables on Authorized Values page
Bug-9429---Use-DataTables-on-Authorized-Values-pag.patch (text/plain), 3.31 KB, created by
Jonathan Druart
on 2013-01-22 14:55:30 UTC
(
hide
)
Description:
Bug 9429 - Use DataTables on Authorized Values page
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2013-01-22 14:55:30 UTC
Size:
3.31 KB
patch
obsolete
>From 23202970496daf0544fd91e8de57c92ed98899f4 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 18 Jan 2013 14:28:36 -0500 >Subject: [PATCH] Bug 9429 - Use DataTables on Authorized Values page > >Replace the tablesorter plugin with the DataTables plugin on the >Authorized Values page. > >To test, open the Authorized Values page (Administration -> Authorized >values). Confirm that table sorting works correctly. > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >Amended patch: Add the "All" entry. >--- > .../prog/en/modules/admin/authorised_values.tt | 36 +++++++++++--------- > 1 file changed, 20 insertions(+), 16 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt >index e464617..ac9059c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt >@@ -5,27 +5,32 @@ > [% IF ( delete_confirm ) %] › Confirm deletion[% END %] > [% IF ( else ) %]Authorized values[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] >-<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script> >-<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.pager.js"></script> >-<script type="text/javascript" id="js">$(document).ready(function() { >- // call the tablesorter plugin >- $("#table_authorized_values").tablesorter({ >- sortList: [[1,0]], >- headers: { 4: { sorter: false}, 5: { sorter: false}} >- }).tablesorterPager({container: $("#pagertable_authorized_values"),positionFixed: false,size: 50}); >+ >+<link rel="stylesheet" type="text/css" href="/intranet-tmpl/prog/en/css/datatables.css" /> >+<script type="text/javascript" src="/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js"></script> >+[% INCLUDE 'datatables-strings.inc' %] >+<script type="text/javascript" src="/intranet-tmpl/prog/en/js/datatables.js"></script> >+<script type="text/javascript"> >+//<![CDATA[ >+ $(document).ready(function() { >+ $("#table_authorized_values").dataTable($.extend(true, {}, dataTablesDefaults, { >+ "aoColumnDefs": [ >+ { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false }, >+ ], >+ "aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]], >+ "aaSorting": [[ 1, "asc" ]], >+ "iDisplayLength": 20, >+ "sPaginationType": "four_button" >+ })); > > if ( $("#branches option:selected").length < 1 ) { > $("#branches option:first").attr("selected", "selected"); > } >-}); </script> >- >-<script type="text/JavaScript" language="JavaScript"> >-//<![CDATA[ >- $(document).ready(function() { >- $('#icons').tabs(); >- }); >+ $('#icons').tabs(); >+}); > //]]> > </script> >+ > <style type="text/css"> > fieldset.rows div.toptabs li { clear:none;margin-right:.5em;padding-bottom:0;width:auto; } > fieldset.rows div.toptabs .ui-tabs-nav li.ui-tabs-selected {background-color : #F4F8F9; } >@@ -244,7 +249,6 @@ > <h3>Authorized values for category [% category %]:</h3> > > [% IF ( loop ) %]<div id="pagertable_authorized_values"> >-[% INCLUDE 'table-pager.inc' perpage='50' %] > </div>[% END %] > > [% IF ( loop ) %]<table id="table_authorized_values" class="tablesorter"> >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 9429
:
14709
|
14748
|
14881
|
15692
|
15738
|
15879