'formOptions' => [ 'fieldConfig' => [ 'template' => "{input}\n{error}", ], ],
doesn´t work for me.
You are setting
$this->formOptions['fieldConfig']['template'] = "{input}\n{hint}\n{error}";
in the init method, why not use that as the default value instead of the hardcoded string?
'formOptions' => [ 'fieldConfig' => [ 'template' => "{input}\n{error}", ], ],
doesn´t work for me.You are setting
$this->formOptions['fieldConfig']['template'] = "{input}\n{hint}\n{error}";
in the init method, why not use that as the default value instead of the hardcoded string?thank you for the great work.