mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
Enhancement: do not retrieve disabled fields.
SVN:trunk[3504]
This commit is contained in:
@@ -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 != '')
|
||||
|
||||
Reference in New Issue
Block a user