views:

26

answers:

0

Using richfaces fileUpload component has some issues when displaying custom labels containing chars like ö, ä, ü ...

DO_ADD=Hinzufügen

<rich:fileUpload id="upload"
   fileUploadListener="#{controller.upload}"
   maxFilesQuantity="1"
   immediateUpload="true"
   allowFlash="false"
   acceptedTypes="csv"
   addControlLabel="#{msgs.DO_ADD}"/>

For the addControlLabel the component will display something like "Hinzuf& uuml;gen" (ignore the spaces). I'd like to have "Hinzufügen" only...

Is there any way to stop escaping?