Skip to content

Commit

Permalink
Issue #3483: Added disabled filter for dynamicfield elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Jun 20, 2024
1 parent 75419d6 commit af77392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.AJAX.js
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ Core.AJAX = (function (TargetNS) {
QueryString += encodeURIComponent(Name) + '=' + encodeURIComponent($(this).val() || '') + ";";
}
});
$Element.closest('form').find('.DynamicFieldText').each(function () {
$Element.closest('form').find('.DynamicFieldText').filter('[disabled=disabled]').each(function () {
var Name = $(this).attr('name') || '';

// only look at fields with name
Expand Down

0 comments on commit af77392

Please sign in to comment.