Will be great if you can test this PR:
https://github.com/joomla/joomla-cms/pull/38852
In fact it means, open:
layouts/joomla/form/field/tel.php
And add following code (line cca 62)
FROM:
Code: Select all
$required ? 'required' : '',
$dataAttribute,
Code: Select all
$required ? 'required' : '',
!empty($pattern) ? 'pattern="' . $pattern . '"' : '',
$dataAttribute,
- pattern and validate: tel, then the form field becomes tel and the validation works
Jan