Bugzilla – Attachment 14725 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 - Use DataTables on itemtypes administration page
Bug-9437---Use-DataTables-on-itemtypes-administrat.patch (text/plain), 2.58 KB, created by
Owen Leonard
on 2013-01-20 01:19:28 UTC
(
hide
)
Description:
Bug 9437 - Use DataTables on itemtypes administration page
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2013-01-20 01:19:28 UTC
Size:
2.58 KB
patch
obsolete
>From 255bc7fd8230df45d27f7636ad51e00c9d92c8ff 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 - 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. >--- > .../prog/en/modules/admin/itemtypes.tt | 22 ++++++++++---------- > 1 file changed, 11 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 30a3a85..926a0e6 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="/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[ > >@@ -86,6 +80,13 @@ function Check(f) { > } > $(document).ready(function() { > $('#icons').tabs(); >+ $("#table_item_type").dataTable($.extend(true, {}, dataTablesDefaults, { >+ "aoColumnDefs": [ >+ { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, >+ ], >+ "aaSorting": [[ 2, "asc" ]], >+ "iDisplayLength": 10 >+ })); > }); > //]]> > </script> >@@ -291,7 +292,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.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 9437
:
14725
|
14746
|
14879
|
15698
|
15742
|
15883