Hi, I'm trying to insert a jsCookMenu component in a page I have. The thing is I'm trying to get an inputtext in one of my items, just the way it can be done in the original javascript version of the menu. Is it feasible in the myfaces version? I can't get it to work for some reason... here's a sample code.
<t:navigationMenuItem id="test" itemLabel="Test: "> <h:form id="mnuSelectYard"> <h:selectOneMenu id="cmbTest" value="#{myProcessor.myProcessor}"> <f:selectItems value="#{myProcessor.testList}"/> </h:selectOneMenu> </h:form> </t:navigationMenuItem> Thanks, greg