I know that ADF Faces overrides all of the default renderers and the ADF Faces commandLink does not create a dummy form for you. Perhaps that is your problem?
Adam Brod
Product Development Team
| Joey Geiger <[EMAIL PROTECTED]>
02/24/2006 11:22 AM
|
|
I recently upgraded to a 1.1.2 nightly build, and I've run into an issue where the linkdummyform
listed below is not being created on every page. This wasn't an issue with the 1.1.1 release.
I know that I can surround all of my h:commandLink tag sections with forms to make them work,
but I was wondering specifically what triggers the code below to render. I'd rather not have
7-8 different forms on a page just for common links that can be processed by one form.
Thank you.
<!-- MYFACES _javascript_ -->
<form id="linkDummyForm" name="linkDummyForm" style="display:inline" method="post" action=""> <input type="hidden" name="linkDummyForm:_link_hidden_" /><script type="text/_javascript_"><!-- function clear_linkDummyForm() { var f = document.forms['linkDummyForm']; f.elements['linkDummyForm:_link_hidden_'].value=''; f.target=''; } clear_linkDummyForm(); //--></script>
</form>

