0 Replies Latest reply on Aug 17, 2007 6:26 AM by daedlus

    prob with modal panel in an included page

    daedlus

      Hi

      i am trying to create a wizard,, i have following pages somthg liek below

      a.xhtml file:
      
      <h:form xmlns="http://www.w3.org/1999/xhtml"
      ..>
      <!datatable with a a4j commandlink in a column to invoke modalpanel>
      <a4j:outputPanel id="id_a">
      <ui:include id="id_ina" src="b.xhtml" />
      </a4j:outputPanel>
      </h:form>
      
      b.xhtml file:
      <html>
      <ui:composition>
      <!--some headers etc>
      <h:form>
      <div style="overflow-x:hidden;overflow-y:scroll; height: 200; width: 600;">
      <ui:include src="c.xhtml" /></div>
      </h:form>
      </ui:composition>
      </html>
      
      c.xhtml file:
      
      <html>
      <ui:composition>
      <rich:modalPanel id="showM">
      <!--some tags>
      <a4j:outputPanel id="x">
      <h:outputtext value=""hello" rendered="#{myBean.s}"/>
      </a4j:outputPanel>
      </rich:modalPanel>
      </ui:composition>
      </html>
      


      my prob is the modal panel shows in mozilla firefox but not in IE6.
      second, the styles in modal panel are not being shown(scroll bar in case of over flow)

      Also am using the page c.xhtml in modal panel content and also in the wizard.when navigation occurs in wizard to c.xhtml it doesnt display instaed empty page is shown.