Koha/koha-tmpl/intranet-tmpl/prog/js/item_search_fields.js
Koha Development Team d659526b5a
Bug 38664: Tidy the whole codebase
This commit is generated using:
  % perl misc/devel/tidy.pl
*within* ktd, to get the same version of perltidy than what will be used
by our CI (currently v20230309).

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2025-02-11 14:58:24 +01:00

34 lines
908 B
JavaScript

/* global _ MSG_ITEM_SEARCH_DELETE_CONFIRM */
jQuery.validator.addMethod(
"marcfield",
function (value, element) {
return this.optional(element) || /^[0-9a-zA-Z]+$/.test(value);
},
__("Please enter letters or numbers")
);
$(document).ready(function () {
$(".field-delete").on("click", function () {
$(this).parent().parent().addClass("highlighted-row");
if (confirm(__("Are you sure you want to delete this field?"))) {
return true;
} else {
$(this).parent().parent().removeClass("highlighted-row");
return false;
}
});
$("#search_fields").validate({
rules: {
label: "required",
tagfield: {
required: true,
marcfield: true,
},
tagsubfield: {
marcfield: true,
},
},
});
});