2013-11-28 65 views
0

我有一個從數據庫中刪除某些內容時顯示的頁面。此頁面有一個toolbar,可以選擇轉到名爲SearchDocument的頁面,但是當我單擊該選項時,SearchDocumentinputtexts不爲空。每次點擊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> 

回答

0

您可以
1)中的菜單項變化行動perquisaBean.showSearchDocument和清理標題和主題中這種方法;

2)使用其他Form bean存儲數據,如標題和主題。

相關問題