Ensure form validation is displayed on template input entries, especially those marked as read-only
Some checks failed
Create Docker Image / Test Application (x86_64) (push) Has been cancelled
Create Docker Image / Build Docker Image (arm64) (push) Has been cancelled
Create Docker Image / Build Docker Image (x86_64) (push) Has been cancelled
Create Docker Image / Final Docker Image Manifest (push) Has been cancelled

This commit is contained in:
2025-06-22 09:40:45 +10:00
parent 647cee9858
commit 29c39e618f
2 changed files with 14 additions and 11 deletions

View File

@@ -106,6 +106,10 @@
if (rdn_attr && ($(this)[0].name === rdn_attr+'[]'))
return;
// Exclude attributes marked as noedit
if ($(this).hasClass('noedit'))
return;
$(this).attr('readonly',false);
});