Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 524 Bytes

button.md

File metadata and controls

24 lines (16 loc) · 524 Bytes

Button Field

Represents <button> element of type "button". It is rendered as button without default behavior. Documentation:

Usage Example

Widget:

use Yiisoft\Form\Field\Button;

echo Button::widget()->content('Click Me');

Result will be:

<div>
    <button type="button">Click Me</button>
</div>