4 Replies Latest reply on Feb 4, 2009 6:04 AM by ilya_shaikovsky

    Bug in modal Panel

      hi i have the following code

      <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
      <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
      <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
      <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
      <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
      
      
      <f:view>
      <rich:modalPanel id="modalpanel_view_project_member" width="400" height="400" binding="#{Bean.binding_modal_panal_view_members}" autosized="true" resizeable="false">
      <h:form>
      </h:form>
      </rich:modalPanel>
      <h:form>
      <h:CommandButton action="#{Bean.activatemodalpanel}"/>
      </h:form>
      </f:view>
      
      
      and in activatemodalpanel method i have put
      System.out.println("hello modalpanel");
      
       this.binding_modal_panal_view_members.setRendered(true);
       this.binding_modal_panal_view_members.setKeepVisualState(true);


      it does not work with last richfaces version 3.3.3 but it works only with 3.2.1(in the last version the modal panel appear for 1 second than disappear)
      what's wrong?