You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have recently discovered that if the "If this field Required?" is checked on a radio button group, when you click to submit the form, a javascript popup displays as per below:
Do you want to leave this site?
Changes that you made may not be saved.
If 'leave' is clicked, the form processes as normal, if 'stay' is clicked then nothing happens (as expected).
Obviously this isn't great usability wise. I have only tested this with the radio button. If you just have say all textboxes that are required, this does not happen.
Anyway of removing this popup?
The text was updated successfully, but these errors were encountered:
This issue is actually related to validation, page update and the re-submit. This is because you are replacing the form element in your code, jquery are you sure still thinks its tracking the form but the assigned events are lost.
You must add code similar to the following to fix this issue.
Have recently discovered that if the "If this field Required?" is checked on a radio button group, when you click to submit the form, a javascript popup displays as per below:
Do you want to leave this site?
Changes that you made may not be saved.
If 'leave' is clicked, the form processes as normal, if 'stay' is clicked then nothing happens (as expected).
Obviously this isn't great usability wise. I have only tested this with the radio button. If you just have say all textboxes that are required, this does not happen.
Anyway of removing this popup?
The text was updated successfully, but these errors were encountered: