Sheets disappear on a tab in IE
-------------------------------
Key: TOBAGO-419
URL: https://issues.apache.org/jira/browse/TOBAGO-419
Project: MyFaces Tobago
Issue Type: Bug
Components: Themes
Affects Versions: 1.0.11
Environment: Internet Explorer 6 and 7
Reporter: Helmut Swaczinna
When there're more than one sheet on one tab in tabGroup with
switchType="reloadTab"
all sheets disappear when switching to the tab the first time.
Example:
<f:view>
<tc:page id="sheetPage" width="600px" height="200px">
<tc:tabGroup switchType="reloadTab">
<tc:tab id="tab1" label="Tab1">
<tc:out value="Tab1"/>
</tc:tab>
<tc:tab id="tab2" label="Tab2">
<tc:panel>
<f:facet name="layout">
<tc:gridLayout
columns="1*;1*"/>
</f:facet>
<tc:sheet id="testTable2"
columns="1*;1*"
showHeader="true"
showRowRange="none"
showPageRange="none"
showDirectLinks="none"
first="0"
selectable="none"
var="row"
value="#{controller.list1}">
<tc:column label="Column 1">
<tc:out id="column1"
value="#{row.column1}"/>
</tc:column>
<tc:column label="Column 2">
<tc:out id="column2"
value="#{row.column2}"/>
</tc:column>
</tc:sheet>
<tc:sheet id="testTable3"
columns="1*;1*"
showHeader="true"
showRowRange="none"
showPageRange="none"
showDirectLinks="none"
first="0"
selectable="none"
var="row"
value="#{controller.list2}">
<tc:column label="Column 1">
<tc:out id="column1"
value="#{row.column1}"/>
</tc:column>
<tc:column label="Column 2">
<tc:out id="column2"
value="#{row.column2}"/>
</tc:column>
</tc:sheet>
</tc:panel>
</tc:tab>
</tc:tabGroup>
</tc:page>
</f:view>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.