logo

New Response

« Return to the main article

You are replying to:

  1. There is one method of hiding fields from Domino that seems to work.

    When creating fields with pass-thru html like in the previous example:

    <input name="HideMe" value="can-u-c-me?" type="hidden" />

    ...Domino complains and returns an "Item Not Found Exception" error when the form is submitted...

    One way to get round this issue is to replace the 'name' attribute with an 'id' attribute:

    <input id="HideMe" value="can-u-c-me?" type="hidden" />

    This way, you can still do all the javascript processing you like and still send the form to Domino without it throwing up an exception or saving the fields!

Your Comments

Name:
E-mail:
(optional)
Website:
(optional)
Comment: