|
|
|
|
|
by everdimension
601 days ago
|
|
That's exactly the case where the "customValidity" attribute shines! I have nothing against regex and the "pattern" attribute is the way to go for many cases, but having this is an alternative is also very nice: const valid = value.length => 4 && isAlphanumeric(value);
return (
<Input
value={value}
customValidity={valid ? 'at least 4 alpha characters' : ''}
/>
) |
|