single fieldset with legend and submit button outside fieldset element with legend and optional submit button
fieldset
This is a special element type to create a fieldset.
If you use a fieldset element in your form with the submit
setting set to 1, the fieldset will contain the submit button
(which looks much better).
You can use as many fieldsets as you like, and you can use even multiple
submit buttons in several fieldsets (useful if most of the fields are
not required).
Please note, that the value of this element is NOT returned
by $clonefish->getElementValues().
- Live examples:
- Definition:
<php $config = Array( 'fieldset' => Array( 'type' => 'fieldset', 'legend' => 'Personal information', 'submit' => '1 | 0', // default: 0 ) ); ?>
