Is it possible to add a class to the fieldset element?
<?= $this->Form->fieldset($inputs, [
'legend' => 'label',
'class' => 'js-fields',
]); ?>
Its doesnt work…
Is it possible to add a class to the fieldset element?
<?= $this->Form->fieldset($inputs, [
'legend' => 'label',
'class' => 'js-fields',
]); ?>
Its doesnt work…
<?= $this->Form->fieldset($inputs, [
'legend' => 'label',
'fieldset' => [
'class' => 'js-fields',
]
]) ?>