Alena Smart 22.Mar.11 11:16 AM a Web browser Domino Designer7.0.2 FP3Windows XP
Hi,
I have to do some validation on 250 fields.
Depending on who you are and how many days there are I need to validate the fields. My code is working fine when all of the fields are editable for the user, but if 100 fields are computed then the code is not working fine…
I know that I can use passthru in the JavaScript
<input type="hidden" id="js_release" value="<Computed Value>" />
But I would need to do that for 250 fields, there must be a way to validate to see if the fields is accessible to be validated. Any ideas how to do it?
while (i <= 31 )
{
if (!ValidateAllFieldsTexte( i, document.forms[0].elements["TXT_DEBR_"+i], "Comments","N",MaxMMB))
return false
i = i+1;