[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

mnrz do-not-reply at jboss.com
Sat May 5 08:16:00 EDT 2007


sorry and this is the setting.xhtml 
and when I click on "continueButton" i want to go back to last conversatin
but I receive this message:
The conversation ended, timed out or was processing another request



  | <?xml version="1.0" encoding="utf-8" ?>
  | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  | <html xmlns="http://www.w3.org/1999/xhtml"
  | 	xmlns:ui="http://java.sun.com/jsf/facelets"
  | 	xmlns:h="http://java.sun.com/jsf/html"
  | 	xmlns:t="http://myfaces.apache.org/tomahawk"
  | 	xmlns:s="http://myfaces.apache.org/sandbox"
  | 	xmlns:f="http://java.sun.com/jsf/core"
  | 	xmlns:c="http://java.sun.com/jstl/core" >
  | <head>
  | 		<title>
  | 			Query Builder
  | 		</title>
  | 		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  | </head>
  | <body>
  |     <ui:composition template="/pages/template.xhtml">
  |          <ui:define name="topnav">
  |             <ui:include src="/pages/incl/navbar.xhtml" />
  |         </ui:define>
  |         
  |         <ui:define name="body">
  | 	  		<f:view>
  |     <h:form id="settingForm">
  | 	
  | 		<!--label for="categoryList1" value="select a category:" -->
  | 		<t:selectOneMenu  id="categoryList1" required="true" 
  | 					      valueChangeListener="#{userSetting.processValueChanged}" 
  | 					      binding="#{userSetting.selectOneCategory}">
  | 			<f:selectItems id="selectcategory" value="#{userSetting.categorySelectItem}"/>
  | 		</t:selectOneMenu> 
  | 		<h:commandButton id="loadButton" value="Load" class="button" />
  | 		<hr/>
  |    		<h:outputText id="headerNameOutput" value="select columns:" />
  |    		<!-- pprPanelGroup id="pprCategoryDropDown" align="center" partialTriggers="loadButton"-->   
  |           <s:selectManyPicklist id="pickList" size="10" 
  |                         		value="#{userSetting.selectedItems}" valueChangeListener="#{}">
  | 		     <s:selectItems id="columnHeadersSelectItems" value="#{userSetting.columns}" var="column" 
  | 		   				  itemValue="#{column.name}" itemLabel="#{column.label}" />
  |           </s:selectManyPicklist>
  |         <hr/>  
  |         <h:commandButton id="applyButton" value="Apply" class="button" action="#{userSetting.apply}"/>
  |         <h:commandButton id="continueButton" value="Continue" class="button" action="#{userSetting.continueNextPage}"/>
  |    		<s:pprPanelGroup id="pprPanelall" align="center" partialTriggers="applyButton">   
  | 
  |    		</s:pprPanelGroup>        
  |         <!-- outputText value="userSetting.selectedInfo}" -->
  |         
  |    </h:form>
  | </f:view>
  | 
  |         </ui:define>
  |     </ui:composition> 
  | </body>
  | 
  | </html>
  | 
  | 
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043445#4043445

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043445



More information about the jboss-user mailing list