From a04ef4e421ec29a3fb2f8181b5c7af381767001c Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Fri, 10 May 2024 12:39:11 +0200 Subject: js: fix id update in partition form deletion Update all the name and id fields of the elements in the partition form after a delete operation. Inconsistent ids make form.validate() to always return False, this causes all the form validation code to be skipped. --- ogcp/static/js/ogcp.js | 6 ++++-- ogcp/templates/base.html | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'ogcp') diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js index ccd8a1e..4779bf4 100644 --- a/ogcp/static/js/ogcp.js +++ b/ogcp/static/js/ogcp.js @@ -325,10 +325,12 @@ function RemovePartition(evt) { target.remove(); // Reassign rows ids table.find('tr').each(function(index) { - $(this).find('.form-control').each(function() { + function update_references() { const id = $(this).attr('id').replace(/(.*)-(\d{1,4})-(.*)/, `$1-${index}-$3`); $(this).attr('name', id).attr('id', id); - }); + } + $(this).find('input').filter(':first').each(update_references); + $(this).find('.form-control').each(update_references); }); } else { table.find('tr').each(function(index) { diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html index 9cb004b..9ade1d2 100644 --- a/ogcp/templates/base.html +++ b/ogcp/templates/base.html @@ -111,7 +111,7 @@ - +