Hi,
I'm using ADF Faces 11g\JDeveloper 11g to develop a web application and using Weblogic 10.3 to deploy it.
I'm having some issues when I navigate to the same JSP page.
Example:
I have a page using a template:
<f:view>
<af:document id="d1">
<af:form id="f1">
<af:pageTemplate viewId="/base/templase.jspx" id="pt1">
<f:facet name="body">
(...)
<af:commandButton action="#{listPersons.query}"
text="Search"
id="buttonSeachPersons"/>
(...)
and the query method in the backing bean:
public void query() {
this.persons = findPersons(filter);
}
It redirects to the same page, but does not includes the template page content.
I tried to return String in the query method and create a navigation, but it did not worked...
Anyone has any tip?
It works fine when it navigates to different pages.