>From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > > > The action listener is not executed. What could be the reason? > I already made an action in overview.jsp > I get the url > http://localhost:8080/troedel3/overview.jsf; > jsessionid=C53F2E019B32424FC35F7682D18F2C46 > > category.jsp content will be shown. > > This link does not work. > ><h:commandLink id="Category" action="category" > actionListener="#{category.subCategoryActionListener}"> > <h:outputText value="#{subcat.description}" /> > <f:param id="categoryId" name="id" value="#{subcat.catId}" /> ></h:commandLink>
Sounds like you have validation errors. If there are validation errors in the form, the lifecycle will stop short. I'd try adding a h:messages component in the h:form just to make sure you are not getting tripped up on a conversion error or something. You could also make the command immediate if you wanted to bypass validation. <h:commandLink .... immediate="true" Gary

