rich page: facets 'header', 'footer' and 'sidebar' facets locations depend on 
locations in a page.
--------------------------------------------------------------------------------------------------

                 Key: RF-7372
                 URL: https://jira.jboss.org/jira/browse/RF-7372
             Project: RichFaces
          Issue Type: Bug
          Components: component-output
    Affects Versions: 3.3.2.CR1
         Environment: IE6, IE7, IE8, FF2, FF3.0.10, Safari 3.1, Opera 9.62, 
Chrome 1.0.154.43(3.3.2.CR1)
            Reporter: Mikhail Vitenkov
            Assignee: Nick Belaevski
            Priority: Minor


#1. Add rich:page component with all supported facets on a page following way:
<rich:page sidebarPosition="left">              
                <f:facet name="sidebar">
                        <div>Sidebar content goes here</div>
                </f:facet>
                <f:facet name="footer">
                        <div>Footer content goes here</div>
                </f:facet>
                <f:facet name="header">
                        <div>Header content goes here</div>
                </f:facet>
        </rich:page>
#2. Navigate to the page and verify facets order.

Actual behavior:
Sidebar is the first, then footer, then header.
Expected behavior:
Facets order shouldn't depends on facets page location. For exampe, add 
following code on a page and verify facets order:
<h:form id="formID">
                <h:dataTable value="" var="row">
                        <f:facet name="footer">
                                <h:outputText value="FOOTER" />
                        </f:facet>
                        <f:facet name="header">
                                <h:outputText value="HEADER" />
                        </f:facet>
                </h:dataTable>
        </h:form>
Footer is placed first, but "HEADER" is first displayed.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to