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="/main/display.jsf">
<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>