Bugzilla – Attachment 35507 Details for
Bug 13536
Date due without time on CHECKOUT alert
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13536 [Proposed Followup] - Use multi-select
Bug-13536-Proposed-Followup---Use-multi-select.patch (text/plain), 2.34 KB, created by
Kyle M Hall (khall)
on 2015-01-23 14:06:33 UTC
(
hide
)
Description:
Bug 13536 [Proposed Followup] - Use multi-select
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2015-01-23 14:06:33 UTC
Size:
2.34 KB
patch
obsolete
>From de6b125ae6409d46a9e598ead5c7c0a3c9e007a3 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 23 Jan 2015 09:05:38 -0500 >Subject: [PATCH] Bug 13536 [Proposed Followup] - Use multi-select > >--- > .../intranet-tmpl/prog/en/modules/tools/export.tt | 25 +++++++++++++++++-- > 1 files changed, 22 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >index 36a25be..d830498 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >@@ -2,10 +2,22 @@ > <title>Koha › Tools › MARC export</title> > [% INCLUDE 'doc-head-close.inc' %] > [% INCLUDE 'calendar.inc' %] >+<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/multiple-select/jquery.multiple.select.js"></script> >+<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/plugins/multiple-select/multiple-select.css" /> > <script type="text/javascript"> > //<![CDATA[ > $(document).ready(function() { > $('#exporttype').tabs(); >+ >+ $(document).ready(function(){ >+ $("select[multiple='multiple']").multipleSelect( { >+ placeholder: _("Please select ..."), >+ selectAllText: _("Select all"), >+ allSelected: _("All selected"), >+ countSelected: _("# of % selected"), >+ noMatchesFound: _("No matches found") >+ } ); >+ }); > }); > //]]> > </script> >@@ -65,9 +77,16 @@ $(document).ready(function() { > </li> > > <li> >- <label>Library: </label> >- [% INCLUDE 'branch-selector.inc' >- branches = branchloop %] >+ <label for="branch">Library: </label> >+ <select id="branch" name="branch" multiple="multiple"> >+ [% FOREACH branchloo IN branchloop %] >+ [% IF ( branchloo.selected ) %] >+ <option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option> >+ [% ELSE %] >+ <option value="[% branchloo.value %]">[% branchloo.branchname %]</option> >+ [% END %] >+ [% END %] >+ </select> > </li> > <li> > <label for="startcn">From item call number: </label> >-- >1.7.2.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 13536
:
35033
|
35443
|
35453
|
35507