Dear Sirs 

i am using a two colums sheet. The contents of the 
first column has a fixed content. The secound column 
may alter with its structure. It may contain one or 
two columns inside. 

It looks like this: 

<tc:sheet .... columns="25px;1*" > 

  <tc:column id="..." align="top"> 
    <tc:selectBooleanCheckbox id="..."  value=".." /> 
  </tc:column> 

  <tc:column id="..." align="top"> 
     <tc:panel rendered="#{itm.type == 'View1'}"> 
     </tc:panel> 

     <tc:panel rendered="#{itm.type == 'View2'}"> 
     </tc:panel> 
  </tc:column> 
</tc:sheet> 

The curious thing is, when i add a simple output or 
control inside the panel, everything goes fines. 
When  try to use a grid-layoutmanager as shown 
in the follwing panel code; 


<tc:panel rendered="#{itm.type == 'View1'}"> 
   <f:facet name="layout"> 
       <tc:gridLayout columns="50%;50%"/> 
   </f:facet> 
                                                                                
                
   <tc:out value="#{itm.val1}"/> 
   <tc:out value="#{itm.val2}"/> 
</tc:panel> 

Any output lost, you may not find any output 
in the columns cell, regardless iff you also 
change the 50%;50% by fixed;fixed or 1*;1* 

Looks like a rendering problem ?? 


Groovie
-- 
View this message in context: 
http://www.nabble.com/-TOBAGO--tc.gridlayout-does-not-work-inside-a-sheets-column-tp20595913p20596452.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.

Reply via email to