Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 349 Bytes

button-group.md

File metadata and controls

24 lines (18 loc) · 349 Bytes

Button Group Field

Represents a button group widget.

Usage Example

Widget:

echo ButtonGroup::widget()
    ->buttons(
        Html::resetButton('Reset Data'),
        Html::submitButton('Send'),
    );

Result will be:

<div>
    <button type="reset">Reset Data</button>
    <button type="submit">Send</button>
</div>