In Property file
msg_profile = <b> profile1: </b> <br> Set profile
I have given bold and break html tags between Profile1 and Set profile in above property.
Bean
private List<SelectItem> profiles;
this.profiles.add(new SelectItem(new Integer(0), MessageFactory.getString(context, "msg_profile")));
xhtml file
<h:selectOneRadio id="profiles" layout="pageDirection" value="#{bean.selectedProfile}" style="font-size:12px;">
<f:selectItems value="#{bean.profiles}" itemLabelEscaped="false"/>
</h:selectOneRadio>
I am expecting out put is
'Profile1:' in bold 'Set Profile' in new line
