Lines 185-196
$(document).ready(function(){
Link Here
|
185 |
[% ite.subfield %] - [% ite.marc_lib %] |
185 |
[% ite.subfield %] - [% ite.marc_lib %] |
186 |
</label> |
186 |
</label> |
187 |
|
187 |
|
188 |
[% UNLESS ( ite.mandatory ) %] |
|
|
189 |
<input type="checkbox" id="row[% ite.tag %][% ite.subfield %][% ite.random %]" title="Check to delete subfield [% ite.subfield %]" name="disable_input" value="[% ite.subfield %]" /> |
190 |
[% ELSE %] |
191 |
<span class="required">Required</span> |
192 |
[% END %] |
193 |
|
194 |
[% SET mv = ite.marc_value %] |
188 |
[% SET mv = ite.marc_value %] |
195 |
[% IF ( mv.type == 'select' ) -%] |
189 |
[% IF ( mv.type == 'select' ) -%] |
196 |
<select name="[%- mv.name -%]" id="[%- mv.id -%]" size="1" tabindex="1" class="input_marceditor"> |
190 |
<select name="[%- mv.name -%]" id="[%- mv.id -%]" size="1" tabindex="1" class="input_marceditor"> |
Lines 221-226
$(document).ready(function(){
Link Here
|
221 |
<textarea tabindex="1" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="255">[%- mv.value -%]"</textarea> |
215 |
<textarea tabindex="1" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="255">[%- mv.value -%]"</textarea> |
222 |
[%- END -%] |
216 |
[%- END -%] |
223 |
|
217 |
|
|
|
218 |
[% UNLESS ( ite.mandatory ) %] |
219 |
<input type="checkbox" id="row[% ite.tag %][% ite.subfield %][% ite.random %]" title="Check to delete subfield [% ite.subfield %]" name="disable_input" value="[% ite.subfield %]" /> |
220 |
[% ELSE %] |
221 |
<span class="required">Required</span> |
222 |
[% END %] |
223 |
|
224 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
224 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
225 |
<input type="hidden" name="subfield" value="[% ite.subfield %]" /> |
225 |
<input type="hidden" name="subfield" value="[% ite.subfield %]" /> |
226 |
<input type="hidden" name="mandatory" value="[% ite.mandatory %]" /> |
226 |
<input type="hidden" name="mandatory" value="[% ite.mandatory %]" /> |
227 |
- |
|
|