Form reset in repeat

dmx-on:success=“conditional2.database_viewer_dropdown_add_new_collapse.add_database_viewer_values.reset()”

The above is code what was generated when I selected it under form success,

database_viewer_dropdown_add_new_collapse
add_database_viewer_values
both of the above have dynamic binded ids (as they are in a repeat)

database_viewer_dropdown_add_new_collapse_0
add_database_viewer_values_0
The above two with the _0 at the end is what the dynamic ids look like this is done using the $index from the row it repeats from.

I can’t seem to get my form to reset any ideas?

Still can’t seem to make this work any ideas how id add this dynamically?

How about placing the repeat inside the form instead?
Or you can just use JavaScript to reset the form.

For example, on success > static event > document.querySelector('form').reset()