Christophe, I suggest you look at the HTML returned by Jetspeed. If the "portlet" is a WebPagePortlet, then make sure the appropiate "dont_remove_xx" parameters are set. See http://jakarta.apache.org/jetspeed/site/portlet_config_WebPagePortlet.html
QUERTEMONT Christophe wrote: > Hi, > >I have a html form with checkboxes and a togglecheck box that checks or >uncheck all the checkboxes in my portlet. > >my form is created like this : > ><form NAME="selectedForm" ACTION=""> > <table border="0" cellpadding="0" cellspacing="0" width="100%"> > <tr> > <td colspan="3" align="right"> > <INPUT TYPE="CHECKBOX" NAME="toggleCheckAll" onclick="checkAll()"/> > </td> > </tr> > <tr> > <td colspan="3" align="right"> > <INPUT TYPE="CHECKBOX" NAME="cbx1"/> > </td> > ..... > </tr> ></form> > >when I use the following javascript syntax : >if(document.selectedForm.toggleCheckAll.checked) > >I got an error saying that document.selectedForm.toggleCheckAll is null >! On the other hand if I run the same JSP outside the portlet it works >fine ! > >Does anyone know how to reference a form in a portlet ? > >Thanks !, > >Christophe > > Paul Spencer > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
