I would like to do a simple star rating in a dropdown on an XPage. There seems to be a problem with the codepage or something similar. In Designer everything looks OK (except that the stars are b/w in Designer) but I get ?? in the dropdown. If I am doing things TOTALLY incorrectly I do not mind using something else (eg. ExtLib)
here is the code
<xp:comboBox id="comboBox1" value="#{viewScope.mon_bewertung}">
<xp:selectItem itemLabel=" " itemValue="0"></xp:selectItem>
<xp:selectItem itemLabel="1 " itemValue="1"></xp:selectItem>
<xp:selectItem itemLabel="2 " itemValue="2"></xp:selectItem>
<xp:selectItem itemLabel="3 " itemValue="3"></xp:selectItem>
<xp:selectItem itemLabel="4 " itemValue="4"></xp:selectItem>
<xp:selectItem itemLabel="5 " itemValue="5"></xp:selectItem>
</xp:comboBox>
Thanking you in advance Ursus