<h:selectManyCheckbox required="true">
<f:selectItem itemValue="0" itemLabel="cats"
itemDescription="Description not displayed"/>
<f:selectItem itemValue="1" itemLabel="dogs"/>
<f:selectItem itemValue="2" itemLabel="birds"/>
...
When the page 开发者_JAVA技巧is rendered, I can't see the itemDescription.
Is this a known behavior with JSF?From the Facelet Taglib Documentation:
itemLabel
: Label to be displayed to the user for this option.
itemDescription
: Description of this option, for use in development tools.
I understand this as the itemLabel is the displayed attribute.
精彩评论