Lines 258-264
function confirm_deletion() {
Link Here
|
258 |
[% IF ( mv.type == 'hidden' ) %] |
258 |
[% IF ( mv.type == 'hidden' ) %] |
259 |
<input type="hidden" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]"> |
259 |
<input type="hidden" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]"> |
260 |
[% ELSIF ( mv.type == 'select' ) %] |
260 |
[% ELSIF ( mv.type == 'select' ) %] |
261 |
[% IF ( mv.readonlyselect ) %] |
261 |
[% IF ( mv.readonly ) %] |
262 |
<select name="field_value" id="[%- mv.id -%]" size="1" class="input_marceditor" readonly="readonly" disabled="disabled"> |
262 |
<select name="field_value" id="[%- mv.id -%]" size="1" class="input_marceditor" readonly="readonly" disabled="disabled"> |
263 |
[% ELSE %] |
263 |
[% ELSE %] |
264 |
<select name="field_value" id="[%- mv.id -%]" size="1" class="input_marceditor"> |
264 |
<select name="field_value" id="[%- mv.id -%]" size="1" class="input_marceditor"> |
Lines 272-292
function confirm_deletion() {
Link Here
|
272 |
[% END %] |
272 |
[% END %] |
273 |
</select> |
273 |
</select> |
274 |
[% ELSIF ( mv.type == 'text_auth' ) %] |
274 |
[% ELSIF ( mv.type == 'text_auth' ) %] |
275 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> |
275 |
[% IF mv.readonly %] |
276 |
[% SET dopop = "Dopop('/cgi-bin/koha/authorities/auth_finder.pl?authtypecode=\"${mv.authtypecode}\"&index=${mv.id}','${mv.id}')" %] |
276 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" readonly="readonly" /> |
277 |
<a href="#" class="buttonDot" onclick="[%- dopop -%]; return false;" title="Tag editor">...</a> |
277 |
[% ELSE %] |
|
|
278 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> |
279 |
[% SET dopop = "Dopop('/cgi-bin/koha/authorities/auth_finder.pl?authtypecode=\"${mv.authtypecode}\"&index=${mv.id}','${mv.id}')" %] |
280 |
<a href="#" class="buttonDot" onclick="[%- dopop -%]; return false;" title="Tag editor">...</a> |
281 |
[% END %] |
278 |
[% ELSIF ( mv.type == 'text_plugin' ) %] |
282 |
[% ELSIF ( mv.type == 'text_plugin' ) %] |
279 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> |
283 |
[% IF mv.readonly %] |
280 |
[% IF ( mv.nopopup ) %] |
284 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" readonly="readonly" /> |
281 |
<a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="No popup">...</a> |
285 |
[% ELSE %] |
282 |
[% ELSE %] |
286 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> |
283 |
<a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="Tag editor">...</a> |
287 |
[% IF ( mv.nopopup ) %] |
|
|
288 |
<a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="No popup">...</a> |
289 |
[% ELSE %] |
290 |
<a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="Tag editor">...</a> |
291 |
[% END %] |
292 |
[%- mv.javascript -%] |
284 |
[% END %] |
293 |
[% END %] |
285 |
[%- mv.javascript -%] |
|
|
286 |
[% ELSIF ( mv.type == 'text' ) %] |
294 |
[% ELSIF ( mv.type == 'text' ) %] |
287 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> |
295 |
[% IF mv.readonly %] |
|
|
296 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" readonly="readonly" /> |
297 |
[% ELSE %] |
298 |
<input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> |
299 |
[% END %] |
288 |
[% ELSIF ( mv.type == 'textarea' ) %] |
300 |
[% ELSIF ( mv.type == 'textarea' ) %] |
289 |
<textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64" >[% mv.value %]</textarea> |
301 |
[% IF mv.readonly %] |
|
|
302 |
<textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64" readonly="readonly" >[% mv.value %]</textarea> |
303 |
[% ELSE %] |
304 |
<textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64" >[% mv.value %]</textarea> |
305 |
[% END %] |
290 |
[% END %] |
306 |
[% END %] |
291 |
|
307 |
|
292 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
308 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
293 |
- |
|
|