[richfaces-issues] [JBoss JIRA] Created: (RF-10398) PopupPanel: modal panels called one from another. Second one do not overlaps the first.

Ilya Shaikovsky (JIRA) jira-events at lists.jboss.org
Tue Feb 1 17:41:39 EST 2011


PopupPanel: modal panels called one from another. Second one do not overlaps the first.
---------------------------------------------------------------------------------------

                 Key: RF-10398
                 URL: https://issues.jboss.org/browse/RF-10398
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: component-panels-layout-themes
    Affects Versions: 4.0.0.Milestone5
            Reporter: Ilya Shaikovsky
            Assignee: Nick Belaevski
         Attachments: ppppp.png

code 	
<rich:popupPanel id="modalPanel8" header="Modal panel" width="350"
		height="150">
		<h:form>
			<h:panelGrid>
				<h:inputText value="#{userBean.name}" />
				<h:inputText value="#{userBean.age}" />
					<a4j:commandButton value="Close" id="close"
						onclick="#{rich:component('modalPanel8')}.hide();return false;" />
					<a4j:commandButton value="Save and Close" id="save"
						reRender="input"
						oncomplete="if (#{facesContext.maximumSeverity==null}) #{rich:component('modalPanel8')}.hide();" />
			</h:panelGrid>
		</h:form>
	</rich:popupPanel>
	<a4j:outputPanel ajaxRendered="true">
		<rich:popupPanel id="msgPanel" modal="true" zindex="101"
			header="Correct your input!" autosized="true"
			show="#{facesContext.maximumSeverity!=null}">
			<h:messages ajaxRendered="true" style="color:red" />
			<a href="#" onclick="#{rich:component('msgPanel')}.hide()">Hide</a>
		</rich:popupPanel>
	</a4j:outputPanel>

1) problem when panel with messages appears - first one still available.
2) making larger zindex on second - do not works because not applied to shadow div. if apply using firebug - works as I need.

screen attached.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the richfaces-issues mailing list