I'm looking to do an inputMask for an ip address.
Currently I have this code:
<p:inputMask value="#{newNode.ipv4}" mask="999.999.999.999">
<p:keyFilter mask="num" />
</p:inputMask>
So I can enter un num value between 000.000.000.000 to 999.999.999.999 but I would like to restrict the input to 255.255.255.255, do you know a way to do this?
Thanks, Ersch