- Added 'Register ...' functionality to overviews. ==> No more separate menu items...
This commit is contained in:
@@ -145,8 +145,17 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<script>
|
||||
function validateTableSelection(formId) {
|
||||
const form = document.getElementById(formId);
|
||||
const selectedRow = form.querySelector('input[name="selected_row"]:checked');
|
||||
if (!selectedRow) {
|
||||
alert('Please select a row first');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.json-editor-container {
|
||||
height: 400px;
|
||||
|
||||
Reference in New Issue
Block a user