Hi Gabor,
good to hear, that you like the 3.2 "series" of Visforms.
I think, I was able to provide a lot of new features which were high priority on the feature wish list.
You mave have seen, that 3.2.x are a beta versions and I have already release to new versions, after Visforms users have detected some bugs. But I have not include the Joomla! autoupdater in the beta versions, so you get no message, that there is an update available. I strongly recommend, to download the latest version (3.2.2), which I released yesterday.
About your suggestion. The autofocus in the first form field was a suggestion of users, too, with regard to make Visforms easier to use for people with disabilities. But thanks for your suggestion. I will consider, if there is a better (more flexible) solution.
Or you can make an template override and just remove the code (see below) that set the focus to the first field.
Code:
//set focus to first visible field
if (($this->firstControl == true) && ((!(isset($field->isDisabled))) || ($field->isDisabled == false)))
{
$script = '<script type="text/javascript">';
$script .= 'jQuery(document).ready( function(){';
$script .= 'jQuery("#'. $field->errorId.'").focus();';
$script .= '});';
$script .= '</script>';
echo $script;
$this->firstControl = false;
}
Regards,
Aicha