From 6524a40eaadc2da76617bbaade0596f7ea28b1ac Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 12 Mar 2015 14:00:14 +0000 Subject: [PATCH] Enhancement: do not retrieve disabled fields. SVN:trunk[3504] --- js/property_field.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/property_field.js b/js/property_field.js index e10d7a32e..3a993655a 100644 --- a/js/property_field.js +++ b/js/property_field.js @@ -625,7 +625,7 @@ function ReadFormParams(sFormId) { var oMap = { }; $('#'+sFormId+' :input').each( function() { - if ($(this).parent().is(':visible')) + if ($(this).parent().is(':visible') && !$(this).prop('disabled')) { var sName = $(this).attr('name'); if (sName && sName != '')