Bug 21531: Subscription "New fields" button should read "New field"
authorOwen Leonard <oleonard@myacpl.org>
Wed, 10 Oct 2018 12:10:45 +0000 (12:10 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 5 Nov 2018 17:02:52 +0000 (17:02 +0000)
This patch changes the label of the "New fields" button on the
subscription add fields page to read "New field," making it consistent
with similar buttons in the staff client.

Also changed:

- Add missing id to <select> to make label clickable.
- Remove custom DataTables configuration in favor of defaults.

To test, apply the patch and go to Serials -> Add subscription fields.

- The button in the toolbar should read "New field."
- The DataTables' functionality of the table of existing custom fields
  should be correct.
- Click the "New field" button.
  - Cliking the "Authorised value category" label should put the focus
    on the dropdown.

Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
(cherry picked from commit bba0044e8ed4cf541d38781950773c1416422b0c)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

koha-tmpl/intranet-tmpl/prog/en/modules/serials/add_fields.tt

index d93cc20..52e58af 100644 (file)
@@ -28,7 +28,7 @@
   <div class="yui-b">
   [% IF op == 'list' %]
     <div id="toolbar" class="btn-toolbar">
-      <a class="btn btn-default btn-sm" id="newfields" href="/cgi-bin/koha/serials/add_fields.pl?op=add_form"><i class="fa fa-plus"></i> New fields</a>
+      <a class="btn btn-default btn-sm" id="newfields" href="/cgi-bin/koha/serials/add_fields.pl?op=add_form"><i class="fa fa-plus"></i> New field</a>
     </div>
   [% END %]
 
           </li>
           <li>
             <label for="av">Authorised value category: </label>
-            <select name="authorised_value_category">
+            <select id="av" name="authorised_value_category">
               <option value="">None</option>
               [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => field.authorised_value_category ) %]
             </select>
 
             $("#fieldst").dataTable($.extend(true, {}, dataTablesDefaults, {
                 'bAutoWidth': false,
-                'sDom': 't<"bottom pager"ilpf>',
                 'sPaginationType': 'four_button',
-                'aLengthMenu': [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
-                'iDisplayLength': 20,
-                'aaSorting': [[ 0, "asc" ]],
                 "aoColumnDefs": [
                     { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
                 ]