Hello,
how i can set a global parameter for the class yii\bootstrap5\ActiveForm? There is in parameter options a css class and i would like change this global for my application.
class ActiveField extends \yii\widgets\ActiveField
{
public $options = ['class' => ['widget' => 'mb-3']];
I wanted to set the value globally in config.php but that doesn’t work
$config = [
'components' => [
'activeField' => [
'class' => 'yii\widgets\ActiveField',
'options' => [
'class' => [
'widget'=> 'mb-1',
],
],
],
Where is my mistake in thinking? Any ideas?
Thank you very much…