Henning Nöth created TOBAGO-2378:
------------------------------------
Summary: Sheet: column resizer doesn't work after client side tab
switch
Key: TOBAGO-2378
URL: https://issues.apache.org/jira/browse/TOBAGO-2378
Project: MyFaces Tobago
Issue Type: Bug
Components: JavaScript
Affects Versions: 6.6.0, 5.14.0
Reporter: Henning Nöth
If a sheet with resizable columns is within a client side tab, than the resizer
doesn't work after a tab switch. If the sheet is lazy=true, than also the
column width of the header doesn't align with the column width of the body.
{code:xml}
<tc:tabGroup>
<tc:tab label="Tab One">
...
</tc:tab>
<tc:tablabel="Tab with sheet">
<tc:sheet id="sheet" value="#{sheetController.hugeSolarList}" var="luminary"
columns="1fr 1fr 1fr"
markup="small" rows="10">
<tc:column label="Name" sortable="true">
<tc:out value="#{luminary.name}" labelLayout="skip"/>
</tc:column>
<tc:column label="Orbit">
<tc:out value="#{luminary.orbit}" labelLayout="skip"/>
</tc:column>
<tc:column label="Period (Days)">
<tc:out value="#{luminary.period}" labelLayout="skip"/>
</tc:column>
</tc:sheet>
</tc:tab>
</tc:tabGroup>
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)