Bug 26703: cataloguing folder
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / marc21_field_008.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>008 builder &rsaquo; Cataloging &rsaquo; Koha</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 </head>
8
9 <body id="cat_marc21_field_008" class="cat" style="padding:1em;" onload="loadXmlValues()">
10 <h3> 008 Fixed-length data elements--Additional material characteristics--General information</h3>
11
12 <table>
13     <tr id="tr_result">
14     </tr>
15 </table>
16 <h4 id="h4_result">&quot;[% result | html %]&quot;</h4>
17
18 <form name="f_pop" id="f_pop" style="display:block" onsubmit="report()" action="">
19     <div id="toolbar">
20         <div class="btn-group">
21             <button type="submit" class="btn btn-default"><i class="fa fa-save"></i> Save</button>
22         </div>
23         <div class="btn-group">
24             <button type="button" class="btn btn-default close_window"><i class="fa fa-remove"></i> Cancel</button>
25         </div>
26     </div>
27
28 <input type="hidden" name="plugin_name" value="marc21_field_008.pl" />
29 <input type="hidden" id="[% index | html %]" name="index" value="[% index | html %]" />
30 <input type="hidden" name="result" id="result" value="[% result | html %]" />
31 <table id="table_material_types">
32     <tr id="tr_material_types">
33         <td><label for="material_type" title="Select a type of material to specify the variable values">Type of Material</label></td>
34         <td>
35             <select name="material_type" id="material_type" title="Select a type of material to specify the variable values" onchange="changeTypeofMaterial(this.form)">
36                 <option value="">Select a type of material</option>
37             </select>
38         </td>
39     </tr>
40
41 </table>
42 </form>
43
44 [% MACRO jsinclude BLOCK %]
45     [% Asset.js("lib/hc-sticky.js") | $raw %]
46     [% Asset.js("js/xmlControlfield.js") | $raw %]
47     <script>
48         var Sticky;
49         $(document).ready(function(){
50             Sticky = $("#toolbar");
51             Sticky.hcSticky({
52                 stickTo: "#f_pop",
53                 stickyClass: "floating"
54             });
55             $(".close_window").on("click", function(e){
56                 e.preventDefault();
57                 window.close();
58             });
59         });
60         var objXmlControlField;
61         var tr_result;
62         var h4_result;
63
64         function loadXmlValues(){
65             [% IF ( errorXml ) %]
66                 alert("[% errorXml | html %]");
67             [% ELSE %]
68                 var form = document.f_pop;
69                 h4_result = document.getElementById("h4_result");
70                 tr_result = document.getElementById("tr_result");
71                 objXmlControlField = new xmlControlField('[% tagfield | html %]', 'f_pop', document.getElementById('material_type'), document.getElementById('table_material_types'), 'h4_result', 'tr_result', '', '[% themelang | html %]', '[% marcflavour | html %]');
72                 [%# If material type configuration is found using the leader, use that type when rendering. Otherwise, the default of BKS will be used %]
73                 [% IF ( material_configuration ) %]
74                     objXmlControlField.idMaterial = "[% material_configuration | html %]";
75                 [% END %]
76                 objXmlControlField.loadXmlValues();
77                 renderResult(tr_result, (form.result.value != "")?form.result.value:returnValueParam("result"));
78             [% END %]
79         } // loadXmlValues
80
81         function changeTypeofMaterial(form){
82             if (form.material_type.options[form.material_type.selectedIndex].value != "" && confirm(_("Show values for '%s' material type?").format(form.material_type.options[form.material_type.selectedIndex].text))) {
83                 objXmlControlField.setIdMaterial(form.material_type.options[form.material_type.selectedIndex].value);
84                 objXmlControlField.renderTemplate();
85                 renderResult(tr_result, form.result.value, true);
86             }
87         } // changeTypeofMaterial
88
89         function report() {
90             var doc   = opener.document;
91             var field = doc.getElementById("[% index | html %]");
92             field.value = document.getElementById("result").value;
93             self.close();
94             return false;
95         }
96
97     </script>
98 [% END %]
99
100 [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]