I`m facing a problem in my request when my values have special characters like á, ã, ó. I have a fieldset with some inputText fields.
The snippet shows what`s happening:
<h:panelGroup id="filter">
<fieldset>
<legend>Filter</legend>
<div class="grid_6">
<div class="row">
<div class="leftt">Value:</div>
<div class="rightt">
<h:inputText id="value" maxlength="50" size="50" value="#{controller.value}" />
</div>
<div class="clearr"></div>
</div>
</fieldset>
</h:panelGroup>
<p:commandButton id="search" action="#{controller.find }"
ajax="true" onclick="dialogStatus.show();" update="dataTable,status,statusDialog,msgs,filter" value="Find" />
When I insert the value
João
, and hit the find button, it converts it to
João
If I remove the panelGroup, it works normally. Can anyone explain this behavior for me?
I`m using PrimeFaces 2.2, JBoss 4.2.3 and Spring 3.1.0.