[
https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.s...
]
Jiří Štefek edited comment on RF-12033 at 2/24/14 9:03 AM:
-----------------------------------------------------------
Oh, now I see. It doesn't matter which JSF version, browser or container you are
using. The important part is: resizing the window before opening the tab with EDT.
Tried with:
RF 4.3.4.Final, RF 5.0 and 4.3.x Snapshots.
FF 27, IE9.
GlassFish 3.1.2.2 vanilla and with JSF 2.1.20, EAP 6.2.
Steps to reproduce:
# unzip, build and deploy the richfaces-test.zip attached here and open in browser
# {color:red}resize the browser window{color}
# open the second tab
** have: gray bar instead of EDT
or can be reproduced with Metamer:
# deploy Metamer and open
http://localhost:8080/metamer/faces/components/richExtendedDataTable/simp...
# open the second tab
# resize the browser window
# open the third tab
** have: only the borders of EDT are visible
was (Author: jstefek):
Oh, now I see. It doesn't matter which JSF version, browser or container you are
using. The important part is: resizing the window before opening the tab with EDT.
Tried with RF 4.3.4.Final and RF 5.0 and 4.3.x Snapshots.
Steps to reproduce:
# unzip, build and deploy the richfaces-test.zip attached here and open in browser
# {color:red}resize the browser window{color}
# open the second tab
** have: gray bar instead of EDT
or can be reproduced with Metamer:
# deploy Metamer and open
http://localhost:8080/metamer/faces/components/richExtendedDataTable/simp...
# open the second tab
# resize the browser window
# open the third tab
** have: only the borders of EDT are visible
ExtendedDataTable doesn't show up in tabpanel with
switchType="client"
----------------------------------------------------------------------
Key: RF-12033
URL:
https://issues.jboss.org/browse/RF-12033
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: component-tables
Affects Versions: 4.2.0.Final
Environment: FireFox 10.0.2 (works in IE7)
GlassFish 3.1
Reporter: Josh Hill
Assignee: Brian Leathem
Labels: lazy-loaded
Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm,
rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png,
rf12033_IE9_error.png, richfaces-test.zip
ExtendedDataTable doesn't show up in tabpanel with switchType="client"
Facelet file from the attached testcase:
{code}
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>Test One</title>
</h:head>
<h:body>
<p>Extended datatable inside tabpanel with switchType
"client"</p>
<h:form>
<rich:tabPanel switchType="client">
<rich:tab>
<f:facet name="header">
Tab One
</f:facet>
Tab One
</rich:tab>
<rich:tab>
<f:facet name="header">
Tab Two
</f:facet>
<rich:extendedDataTable value="#{colorsBean.colors}"
var="color">
<rich:column>
<f:facet name="header">
Column 1
</f:facet>
#{color}
</rich:column>
</rich:extendedDataTable>
</rich:tab>
</rich:tabPanel>
</h:form>
</h:body>
</html>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira