Excellent and thanks, that did the trick.

S.D.

"matt.drees" wrote : c:when is evaluated when the component tree is created 
(typically right at the beginning of the renderResponse phase).  It's used to 
determine which components get added to the tree.  I'm guessing you want the 
decision to be made later, for each row.  So you actually want both components 
added to the tree, but you only want one or the other rendered for any given 
row.
  | 
  | So, you probably want something like this:
  | 
  |   | <rich:column>
  |   |       <h:outputText value="#{sop.name}" style="color:#ff0000" 
rendered="#{sop.isRequired}"/> 
  |   |       <h:outputText value="#{sop.name}" rendered="#{not 
sop.isRequired}"/> 
  |   | </rich:column>
  |   | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4102026#4102026

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4102026
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to