Koha/koha-tmpl/intranet-tmpl/prog/js/rotating-collections.js
Jonathan Druart e9b8004d19
Bug 38255: Replace dataTable constructor with kohaTable - Staff
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2025-02-24 14:29:48 +01:00

32 lines
901 B
JavaScript

/* global _ */
$(document).ready(function () {
$("#barcode").focus();
$(".confirmdelete").click(function () {
return confirm(
__("Are you sure you want to delete this rotating collection?")
);
});
$(".removeitem").on("click", function () {
$(this).parents("tr").addClass("warn");
if (confirm(__("Are you sure you want to remove this item?"))) {
$(this).parents("form").submit();
return true;
} else {
$(this).parents("tr").removeClass("warn");
return false;
}
});
if ($("#rotating-collections-table").length > 0) {
$("#rotating-collections-table").kohaTable({
autoWidth: false,
columnDefs: [
{ targets: [-1], orderable: false, searchable: false },
],
pagingType: "full",
});
}
});