cancel
Showing results for 
Search instead for 
Did you mean: 

r:property tag : the renderer is not convenient

zomurn
Champ in-the-making
Champ in-the-making
Hello,

When I just try to display a property of a node, I though about the rSmiley Tongueroperty tag that do it.
But calling it like this :

<r:propertySheetGrid id="manager-props"
      value="#{MscRedacteurUsersWizard.managerRef}" var="managerProps"
      columns="1" mode="view">
         <r:property name="firstName"  displayLabel=""></r:property>
   </r:propertySheetGrid>

give the output :

: manager

Why setting displayLable to an empty string still cause the semi colons to appear….it's really a pity !  Smiley Sad
1 REPLY 1

zomurn
Champ in-the-making
Champ in-the-making
Hey,

Simply replacing the rSmiley Tongueroperty tag by :

<h:outputText value="#{managerProps.properties['cm:firstName']}"/>

do it !

That's really cool !  😎