good day to all readers.
It's specifically a javascript question.

I've a form containing a hidden table, and inside of this last, controls
that contain useful information invisible to the user, for example, hidden
select tags that contains set of items, only subsets of it are visible to
the user.

<form name="form_HiddenSets">
<table>
 <tr style="display:none">
   <td>
         <select name="R_InstitutionsSet_Institutions">
          ... option tags
        </select>
   </td>
  </tr>
</table>
</form>

if the row is invisible I receive this message
  frm.R_InstitutionsSet_Institutions has no properties.

changing <tr style="display:none"> to <tr> the program works correctly.

Any suggestion?
?why this error, when no matter if the row is visible or not, the object
R_InstitutionsSet_Institutions should be part of the form?

I use only the most standard html specifications, using NetScape navigator
to test my program; over IE, this solution works perfectly.

Thanks in advance

Enediel
Linux user 300141

Happy who can penetrate the secret causes of the things
ĦUse Linux!


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to