[jboss-user] [JBoss Seam] - Re: selectManyCheckbox

JUnkie do-not-reply at jboss.com
Tue Jul 31 11:26:26 EDT 2007


Thanks Pete.

For me it works only "one way": My selection is saved correctly to the db. If I select a single item my console says:

17:10:08,551 INFO  [STDOUT] Hibernate:
  |     delete
  |         from
  |             clients_paymentmethods
  |         where
  |             clients_id=?
  | 
  | 17:10:08,551 INFO  [STDOUT] Hibernate:
  |     insert
  |         into
  |             clients_paymentmethods
  |             (clients_id, paymentmethods_id)
  |         values
  |             (?, ?)

But a fresh call to the page that displays the selectManyCheckbox shows all the checkboxes unchecked, including the one that I selected and resides as a row in the db.

Pete: Could you please recommend a configuration to me? I'm using Seam 1.2.1.GA on JBoss AS 4.2. Should it work under this configuration?


--- Additional information ---

This is my web.xml:
<?xml version="1.0" encoding="UTF-8"?>
  | <web-app version="2.4" 
  | 	xmlns="http://java.sun.com/xml/ns/j2ee"
  | 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  | 	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  | 
  | 
  |     <!-- Seam -->
  |     
  |     <listener>
  |         <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
  |     </listener>
  |  
  |     <servlet>
  |         <servlet-name>Seam Resource Servlet</servlet-name>
  |         <servlet-class>org.jboss.seam.servlet.ResourceServlet</servlet-class>
  |     </servlet>
  | 
  |     <servlet-mapping>
  |         <servlet-name>Seam Resource Servlet</servlet-name>
  |         <url-pattern>/seam/resource/*</url-pattern>
  |     </servlet-mapping>
  | 
  |     <filter>
  |         <filter-name>Seam Filter</filter-name>
  |         <filter-class>org.jboss.seam.web.SeamFilter</filter-class>
  |     </filter>
  | 
  |     <filter-mapping>
  |         <filter-name>Seam Filter</filter-name>
  |         <url-pattern>/*</url-pattern>
  |     </filter-mapping>
  | 
  |     <!-- MyFaces -->
  |     <!--
  |     <listener>
  |         <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
  |     </listener>
  |     -->
  |     
  |     <context-param>
  |       <param-name>javax.faces.CONFIG_FILES</param-name>
  |       <param-value>/WEB-INF/navigation.xml</param-value>
  |     </context-param>
  |     
  |     <context-param>
  |         <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
  |         <param-value>client</param-value>
  |     </context-param>
  |     
  |     <context-param>
  |         <param-name>facelets.DEVELOPMENT</param-name>
  |         <param-value>true</param-value>
  |     </context-param>
  | 
  |     <context-param>
  |         <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
  |         <param-value>.xhtml</param-value>
  |     </context-param>
  | 
  |     <servlet>
  | 	<servlet-name>Faces Servlet</servlet-name>
  | 	<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  | 	<load-on-startup>1</load-on-startup>
  |     </servlet>
  | 
  |     <!-- Faces Servlet Mapping -->
  |     <servlet-mapping>
  | 	<servlet-name>Faces Servlet</servlet-name>
  | 	<url-pattern>*.seam</url-pattern>
  |     </servlet-mapping>
  |     
  |     <!-- Ajax4jsf setup -->
  | 
  |     <!--  ajax4jsf -->
  |    <filter>
  |        <display-name>Ajax4jsf Filter</display-name>
  |        <filter-name>ajax4jsf</filter-name>
  |        <filter-class>org.ajax4jsf.Filter</filter-class>
  |    </filter>
  |    <filter-mapping>
  |       <filter-name>ajax4jsf</filter-name>
  |       <url-pattern>*.seam</url-pattern>
  |    </filter-mapping>
  | 
  |    <!-- Propagate conversations across redirects -->
  |    <filter>
  |        <filter-name>Seam Redirect Filter</filter-name>
  |        <filter-class>org.jboss.seam.servlet.SeamRedirectFilter</filter-class>
  |    </filter>
  |    <filter-mapping>
  |        <filter-name>Seam Redirect Filter</filter-name>
  |        <url-pattern>*.seam</url-pattern>
  |    </filter-mapping>
  | 
  |     
  | 	
  | </web-app>

This is my faces-config:
<faces-config version="1.2"
  |    xmlns="http://java.sun.com/xml/ns/javaee"
  |    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  |    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
  | 
  |     <application>
  |         <view-handler>org.jboss.seam.ui.facelet.SeamFaceletViewHandler</view-handler>
  |         <el-resolver>org.jboss.seam.jsf.SeamELResolver</el-resolver>
  |         
  |  </application>
  | 
  |     <lifecycle>
  |         <phase-listener>org.jboss.seam.jsf.SeamPhaseListener</phase-listener>
  |     </lifecycle>
  |     
  | </faces-config>

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

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



More information about the jboss-user mailing list