|
Lines 338-344
function Check(){
Link Here
|
| 338 |
[% END %] |
338 |
[% END %] |
| 339 |
|
339 |
|
| 340 |
[% SET mv = subfield_loo.marc_value %] |
340 |
[% SET mv = subfield_loo.marc_value %] |
| 341 |
[% IF ( mv.type == 'text' or mv.type == 'text1' ) %] |
341 |
[% IF ( mv.type == 'text' ) %] |
| 342 |
[% IF ( mv.readonly == 1 ) %] |
342 |
[% IF ( mv.readonly == 1 ) %] |
| 343 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor readonly" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" readonly="readonly" /> |
343 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor readonly" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" readonly="readonly" /> |
| 344 |
[% ELSE %] |
344 |
[% ELSE %] |
|
Lines 347-353
function Check(){
Link Here
|
| 347 |
[% IF ( mv.authtype ) %] |
347 |
[% IF ( mv.authtype ) %] |
| 348 |
<span class="subfield_controls"><a href="#" class="buttonDot tag_editor" onclick="openAuth(this.parentNode.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtype | html -%]','biblio'); return false;" tabindex="1" title="Tag editor">Tag editor</a></span> |
348 |
<span class="subfield_controls"><a href="#" class="buttonDot tag_editor" onclick="openAuth(this.parentNode.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtype | html -%]','biblio'); return false;" tabindex="1" title="Tag editor">Tag editor</a></span> |
| 349 |
[% END %] |
349 |
[% END %] |
| 350 |
[% ELSIF ( mv.type == 'text_complex' or mv.type == 'text2' ) %] |
350 |
[% ELSIF ( mv.type == 'text_complex' ) %] |
| 351 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor framework_plugin" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" /> |
351 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor framework_plugin" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" /> |
| 352 |
<span class="subfield_controls"> |
352 |
<span class="subfield_controls"> |
| 353 |
[% IF mv.noclick %] |
353 |
[% IF mv.noclick %] |
| 354 |
- |
|
|