I want to prepend +90 (Turkey's phone code) to every phone numbers a user enters. For that reason I am using a mask like this:
<p:inputMask
id="homePhone"
value="#{personController.model.homePhone}"
mask="+90 (999) 999-9999"
size="20"
converter="converterPhone" />
But displays it like this: +_0 (___) ___-____
However, I want it to look like this: +90 (___) ___-____
<!-- pay attention to 9 -->
Is there a way to escape the first 9
like this: mask="+\90 (999) 999-9999"
?
Thank you all...