Page 1 of 1

Don't ask for confirmation to close the form

Posted: Tue Oct 13, 2020 10:09 am
by kknm
The form contains a calendar for selecting the date of the report. Each time before closing the form, it asks if the selected date should be saved, but this is not necessary.
How to suppress the question?

Re: Don't ask for confirmation to close the form

Posted: Tue Oct 13, 2020 10:13 am
by kev1n
Hi,

Add an onchange event to the date field with the Javascript

Code: Select all

nuHasNotBeenEdited();

Re: Don't ask for confirmation to close the form

Posted: Tue Oct 13, 2020 10:57 am
by kknm
kev1n wrote:Hi,

Add an onchange event to the date field with the Javascript

Code: Select all

nuHasNotBeenEdited();
Thanks !