0
我有一個從數據庫中刪除某些內容時顯示的頁面。此頁面有一個toolbar
,可以選擇轉到名爲SearchDocument
的頁面,但是當我單擊該選項時,SearchDocument
inputtexts
不爲空。每次點擊toolbar
上的選項時,我想顯示一個新的空白頁面。單擊工具欄選項後顯示新的空白頁面選項
我該怎麼做?
Deleted.xhtml
<h:body>
<h:form>
<rich:toolbar height="35" >
<rich:dropDownMenu>
<f:facet name="label">
<h:panelGroup>
<h:outputText value="Home" style="font-size:10pt" />
</h:panelGroup>
</f:facet>
<rich:menuItem mode="ajax" label="Go" action="SearchDocument">
</rich:menuItem>
</rich:dropDownMenu>
</rich:toolbar>
<br />
<br />
<h:outputText value="Successfully deleted!!!" />
</h:form>
</h:body>
SearchDocument.xhtml
<h:form enctype="multipart/form-data">
Search Documents<br />
<br />
<h:panelGrid columns="2">
Title: <h:inputText value="#{pesquisaBean.title}" />
<h:commandButton value="Procurar" action="#{pesquisaBean.search()}" />
</h:panelGrid>
<br />
<h:panelGrid columns="2">
Keyword: <h:inputText value="#{pesquisaBean.subject}" />
<h:commandButton value="Procurar" action="#{pesquisaBean.searchBySubject()}" />
</h:panelGrid>
<br />
<br />
</form>