Bugzilla – Attachment 7722 Details for
Bug 5345
DataTables in Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
basket.tt
0004-Bug-5345-DataTables-integration-in-acquisition-modul.patch (text/plain), 2.70 KB, created by
Jonathan Druart
on 2012-02-17 15:03:25 UTC
(
hide
)
Description:
basket.tt
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2012-02-17 15:03:25 UTC
Size:
2.70 KB
patch
obsolete
>From 73b0ed64318cc71d510b6dccd544e760b1966fd7 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Fri, 17 Feb 2012 15:56:08 +0100 >Subject: [PATCH 04/16] Bug 5345: DataTables integration in acquisition module > [4] > >basket.tt >--- > .../intranet-tmpl/prog/en/modules/acqui/basket.tt | 33 ++++++++++++++------ > 1 files changed, 23 insertions(+), 10 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >index aaea6c0..37e6956 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >@@ -1,19 +1,13 @@ > [% INCLUDE 'doc-head-open.inc' %] > <title>Koha › Acquisitions › [% UNLESS ( basketno ) %]New [% END %][% IF ( delete_confirm ) %]Delete [% END %]Basket [% basketname|html %] ([% basketno %]) for [% name|html %]</title> >+<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> > [% INCLUDE 'doc-head-close.inc' %] >+<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> > [% UNLESS ( closedate ) %] >-<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script> > <script type="text/javascript"> > //<![CDATA[ >- $(document).ready(function() { >- $("#orders").tablesorter({ >- headers: { >- 9: { sorter: false }, >- 10: { sorter: false } >- } >- }); >- $("#cancelledorderst").tablesorter(); >- }); > function confirm_close() { > var is_confirmed = confirm(_('Are you sure you want to close this basket?')); > if (is_confirmed) { >@@ -67,6 +61,25 @@ > </script> > [% END %] > [% END %] >+<script type="text/javascript"> >+//<![CDATA[ >+ $(document).ready(function() { >+ var orderst = $("#orders").dataTable($.extend(true, {}, dataTablesDefaults, { >+ "sPaginationType": "four_button" >+ } ) ); >+ var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, { >+ "sPaginationType": "four_button" >+ } ) ); >+ } ); >+ function confirm_reopen(skip) { >+ var is_confirmed = skip || confirm(_('Are you sure you want to reopen this basket?')); >+ if (is_confirmed) { >+ window.location = "[% script_name %]?op=reopen&basketno=[% basketno %]"; >+ } >+ } >+//]]> >+</script> >+ > <style type="text/css"> > .sortmsg {font-size: 80%;} > </style> >-- >1.7.7.3 >
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 5345
:
7719
|
7720
|
7721
|
7722
|
7723
|
7724
|
7725
|
7726
|
7727
|
7728
|
7729
|
7730
|
7731
|
7732
|
7733
|
7734
|
8039
|
8040
|
8057
|
8058
|
8292
|
8830
|
8831
|
8833
|
8834
|
8835
|
8836
|
8837
|
9519
|
9601
|
9602