//fixed bug #PSCFV-10091 part2

This commit is contained in:
Vincent Augagneur
2013-08-12 15:23:52 +02:00
parent 7a06dca942
commit 7cc59b2f49
+5 -2
View File
@@ -619,13 +619,16 @@ function checkAllZones(elt)
$('.fees input:text').each( function () {
index = $(this).parent().index();
if ($('tr.fees_all td:eq('+index+')').hasClass('validated'))
{
$(this).removeAttr('disabled');
})
$('.fees_all td:eq('+index+') input:text').removeAttr('disabled');
}
});
}
else
{
$('.input_zone').removeAttr('checked');
$('.fees input:text').attr('disabled', 'disabled').val('');
$('.fees input:text, .fees_all input:text').attr('disabled', 'disabled').val('');
}
}