static.snapadmin.js.console.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-admin Show documentation
Show all versions of snap-admin Show documentation
SnapAdmin is an auto-generated CRUD admin panel for Spring Boot/JPA apps
document.addEventListener("DOMContentLoaded", () => {
document.querySelector("#console-delete-btn").addEventListener("click", () => {
if (confirm("Are you sure you want to delete this query?")) {
document.querySelector("#console-delete-form").submit();
}
});
if (document.querySelector("nav select.page-size") != null) {
document.querySelectorAll("nav select.page-size").forEach(e => {
e.addEventListener('change', function(e) {
console.log(e.target.parentElement);
e.target.parentElement.submit();
});
});
}
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy