Hi there,
I’m trying to make a filter sidebar with “reset all” button. Here’s my form setting:
Is there anything I’m missing?
Hi there,
I’m trying to make a filter sidebar with “reset all” button. Here’s my form setting:
Is there anything I’m missing?
Hey Roxann,
Yes, Cornerstone Forms does have a Reset button feature that clears form fields without submitting.
Selecting Reset configures the element as a standard HTML <input type="reset"> button. When clicked, this button natively resets all the fields in the parent form back to their default/empty values directly in the browser, without submitting any data to the server.
Hey Christian, that worked! Thanks so much 
One other thing. Is there a way to hide the button if nothing is selected and show if any?
Yes, there is a built-in, zero-code way to do this using Input Conditions natively supported by Cornerstone Forms:
Input Data
"".When set up this way, the forms plugin’s frontend JavaScript automatically monitors form changes in real-time. If the targeted field is empty (nothing is selected or typed), the Reset button is hidden (display: none). As soon as any option or text is entered, the condition is met and the button automatically shows up.