I have this input :
<p:column headerText="Quantité">
<h:inputText styleClass="maqte" id="qte"
onkeyup="validerInput($(this),$(this).parent().prev().find('.monpu'));"
value="#{car.qte}" converter="lenientDoubleConverter" >
</h:inputText>
</p:column>
as shown in code above (converter="lenientDoubleConverter"
)
I use this converter (to disable the implicit conversion of jsf2)
but after when the user click on one button I want to enable it, then I should remove this converter with javascript before the request is sent to ther server
is there any way to remove this attribute with javascript
thank you in advance