Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 531 Bytes

reset-button.md

File metadata and controls

23 lines (16 loc) · 531 Bytes

Reset Button Field

Represents <button> element of type "reset" that is rendered as button resetting all the controls to their initial values. Documentation:

Usage Example

Widget:

echo ResetButton::widget()->content('Reset Form');

Result will be:

<div>
    <button type="reset">Reset Form</button>
</div>