Enhancement: do not retrieve disabled fields.

SVN:trunk[3504]
This commit is contained in:
Denis Flaven
2015-03-12 14:00:14 +00:00
parent f53943e78c
commit 6524a40eaa

View File

@@ -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 != '')