From 4fbb760779804761d60421ebbf69ed8dde64ea30 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 15 Jun 2012 12:21:15 -0400 Subject: [PATCH] [SIGNED-OFF] Bug 7784 - Improve clarity of batch modification operations - Improve clarity of hint about checkboxes - Inicate that leaving fields blank will make no change - Add a hint when checking checkboxes stating that the field will be deleted. - Block deletion of required subfields - Add "required" style to required subfields (matching additem.pl) Signed-off-by: Nicole C. Engard Works as described --- .../prog/en/modules/tools/batchMod-edit.tt | 61 +++++++++++-------- 1 files changed, 35 insertions(+), 26 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt index 4c7198e..551ff40 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt @@ -14,33 +14,39 @@ var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% for( x=0; x + @@ -138,17 +144,20 @@ $("input[name='disable_input']").click(function() {

Edit Items

-
Checking the box right next the subfield label will disable the entry and delete the values of that subfield on all selected items
+
Checking the box right next the subfield label will disable the entry and delete the subfield on all selected items. Leave fields blank to make no change.
    [% FOREACH ite IN item %]
  1. - - + [% UNLESS ( ite.mandatory ) %][% ELSE %]Required[% END %] [% ite.marc_value %] @@ -156,7 +165,7 @@ $("input[name='disable_input']").click(function() { [% IF ( ite.repeatable ) %] + [% END %] - +
  2. [% END %]
-- 1.7.2.3