Bugzilla – Attachment 44543 Details for
Bug 14060
Remove readonly on date inputs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14060: Add OnClose event on missing datepicker
Bug-14060-Add-OnClose-event-on-missing-datepicker.patch (text/plain), 3.16 KB, created by
Jonathan Druart
on 2015-11-06 10:18:13 UTC
(
hide
)
Description:
Bug 14060: Add OnClose event on missing datepicker
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-11-06 10:18:13 UTC
Size:
3.16 KB
patch
obsolete
>From 98d56da9c8a80588f752a108d2ca7aaf27ea96e9 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Mon, 27 Apr 2015 10:39:14 +0200 >Subject: [PATCH] Bug 14060: Add OnClose event on missing datepicker > >The "suspend until" inputs (hold list on circ/circulation.pl and >members/moremember.pl) were not set in the same way. >The minDate option should be set for both (bug 10703 removed it for >circ/circulation.pl). >This patch reintroduces the option and add the OnClose event on both. >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 9 ++++++++- > koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 10 ++++++++-- > 2 files changed, 16 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index ebaeb3c..74fd346 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -121,6 +121,13 @@ $(document).ready(function() { > } > }); > >+ $("#suspend_until").datepicker({ >+ onClose: function(dateText, inst) { >+ validate_date(dateText, inst); >+ }, >+ minDate: 1, // require that hold suspended until date is after today >+ }); >+ > }); > > //]]> >@@ -948,7 +955,7 @@ No patron matched <span class="ex">[% message %]</span> > > [% IF AutoResumeSuspendedHolds %] > <label for="suspend_until">until</label> >- <input type="text" size="10" id="suspend_until" name="suspend_until" class="datepicker" /> >+ <input type="text" size="10" id="suspend_until" name="suspend_until datepicker" /> > <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span> > [% END %] > </form> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >index 6f5ff72..8fa2f80 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -82,7 +82,13 @@ $(document).ready(function() { > return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone.")); > });[% END %] > >- $("#suspend_until").datepicker({ minDate: 1 }); // require that hold suspended until date is after today >+ $("#suspend_until").datepicker({ >+ onClose: function(dateText, inst) { >+ validate_date(dateText, inst); >+ }, >+ minDate: 1, // require that hold suspended until date is after today >+ }); >+ > }); > function uncheck_sibling(me){ > nodename=me.getAttribute("name"); >@@ -496,7 +502,7 @@ function validate1(date) { > > [% IF AutoResumeSuspendedHolds %] > <label for="suspend_until">until</label> >- <input type="text" size="10" id="suspend_until" name="suspend_until"/> >+ <input type="text" size="10" id="suspend_until" name="suspend_until datepicker"/> > <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span> > [% END %] > </form> >-- >2.1.0
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 14060
:
38484
|
38540
|
38541
|
44542
|
44543
|
44544
|
45282
|
46224
|
54606
|
54607
|
54608
|
54609
|
54610
|
54902
|
54903
|
54904
|
54905
|
54906
|
54907
|
55001
|
55002
|
55012
|
55013
|
55014
|
55015
|
55016
|
55017
|
55018
|
55019
|
55165
|
55246
|
55247
|
55248
|
55249
|
55250
|
55251
|
55252
|
55253
|
55254
|
55255
|
55256