I have two problems.
- I am developing web application in Lotus, and Lotus likes to take control of the situation and insert code where it sees fit.
- I am using Jquery UI to open a modal dialog window. If I simply open and close the dialog, then try to submit the parent form, I get a __click is not an object. When I took a closer look at the code, Lotus wraps the entire page in tags. Then jquery has the form code in it to serve up the dialog. So html forms don't like to live inside of each other?!?
Question.
Can I build a jquery UI modal dialog without using the form tags? Is there an attachment to the tag that the UI lib needs to create the dialog? I've taken the tags out, but what are the side effects?
Thanks for the help, btw it only breaks in IE. Of course.
Added by Lotus
<form method="post" action="/IS/GIFormDev.nsf/giForm-Step3?OpenForm&ideaNumber=000036-2010" name="_DominoForm">
<input type="hidden" name="__Click" value="0">CN=Kris Mitchell/O=xxxx
Jquery Form
<div id="formContainer" style="display:none;">
<div id="dialog-form" title="Copy Other Managers">
<form>
<p>text</p>
<fieldset>
<form>
<div id="ccIngManagerDiv">
</div>
</fieldset>
</form>
</div>