Bugzilla – Attachment 15698 Details for
Bug 9437
Use DataTables on itemtypes administration page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 9437 [Revised] Use DataTables on itemtypes administration page
Bug-9437-Revised-Use-DataTables-on-itemtypes-admin.patch (text/plain), 2.70 KB, created by
Owen Leonard
on 2013-02-26 16:07:55 UTC
(
hide
)
Description:
Bug 9437 [Revised] Use DataTables on itemtypes administration page
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2013-02-26 16:07:55 UTC
Size:
2.70 KB
patch
obsolete
>From 37782e787d8b91337e944f4cee30f48b18f23363 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Sat, 19 Jan 2013 20:13:33 -0500 >Subject: [PATCH] Bug 9437 [Revised] Use DataTables on itemtypes > administration page >Content-Type: text/plain; charset="utf-8" > >Replace the tablesorter plugin with the DataTables plugin on the >itemtypes administration page. > >To test, open the itemtypes administration page (Administration >-> Item types). Confirm that table sorting works correctly. > >Revision corrects template path to datatables assets. >--- > .../prog/en/modules/admin/itemtypes.tt | 23 ++++++++++---------- > 1 file changed, 12 insertions(+), 11 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >index 7b6000c..0a0bde9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >@@ -18,16 +18,10 @@ Data deleted > [% 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_item_type").tablesorter({ >- sortList: [[1,0]], >- headers: { 0: { sorter: false},5: { sorter: false}} >- }).tablesorterPager({container: $("#pagertable_item_type"),positionFixed: false,size: 10}); >- >-}); </script> >+<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> >+<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> >+[% INCLUDE 'datatables-strings.inc' %] >+<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> > <script type="text/javascript"> > //<![CDATA[ > >@@ -86,6 +80,14 @@ function Check(f) { > } > $(document).ready(function() { > $('#icons').tabs(); >+ $("#table_item_type").dataTable($.extend(true, {}, dataTablesDefaults, { >+ "aoColumnDefs": [ >+ { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, >+ ], >+ "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], >+ "aaSorting": [[ 2, "asc" ]], >+ "iDisplayLength": 10 >+ })); > }); > //]]> > </script> >@@ -273,7 +275,6 @@ Item types administration > [% IF ( else ) %] > <h2>Item types administration</h2> > [% IF ( loop ) %]<div id="pagertable_item_type"> >-[% INCLUDE 'table-pager.inc' perpage='10' %] > </div> > <table id="table_item_type"> > <thead> >-- >1.7.9.5
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 9437
:
14725
|
14746
|
14879
|
15698
|
15742
|
15883