NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: mtabakin on August 18, 2015, 03:48:54 PM

Title: Detecting cancel button press and Invalid fields berfore exiting a NetWebForm
Post by: mtabakin on August 18, 2015, 03:48:54 PM
I have a NetWebForm and when the user clicks SAVE I want to do some "Post Processing" of the data on the form and put some of the manipulated data into another table. I added this post processing code into the CompleteForm routine and it seems to work EXCEPT I need to know the following:

1. Did the user press the Cancel button and not the save button so I don't post process
2. I have some fields that are Required Fields and it seems that the CompleteForm routine is called before any of the ValidateField routines so I can not check loc:alert or loc:Invalid to not post process if there are required fields that still need data.

I added debug code to CancelForm but it was never called even when I pressed the cancel button.

Where do I embed or what can I check to accomplish #1 and #2 above or is there another way to go about this completely?
Title: Re: Detecting cancel button press and Invalid fields berfore exiting a NetWebForm
Post by: kevin plummer on August 18, 2015, 05:27:57 PM
I would try,...

I have a NetWebForm and when the user clicks SAVE I want to do some "Post Processing" of the data on the form and put some of the manipulated data into another table. I added this post processing code into the CompleteForm routine and it seems to work EXCEPT I need to know the following:

> moving this to postupdate and postinsert and maybe postdelete depending on what you are doing


1. Did the user press the Cancel button and not the save button so I don't post process

> I don't think the above will be called if cancel pressed

2. I have some fields that are Required Fields and it seems that the CompleteForm routine is called before any of the ValidateField routines so I can not check loc:alert or loc:Invalid to not post process if there are required fields that still need data.

> using the above should fix this prob as well

I added debug code to CancelForm but it was never called even when I pressed the cancel button.
> the cancel form is probably called so server side code not run

Where do I embed or what can I check to accomplish #1 and #2 above or is there another way to go about this completely?
> let me know if the above does not work. I've done something similar and would need to check what I did in more detail.
Title: Re: Detecting cancel button press and Invalid fields berfore exiting a NetWebForm
Post by: Bruce on August 18, 2015, 11:14:00 PM
CompleteForm happens during the ValidateRecord, so it's pre-save, not post save.
Thus it's not suitable for "post processing".

I would do what Kevin suggested;

> moving this to postupdate and postinsert and maybe postdelete depending on what you are doing

Bruce
Title: Re: Detecting cancel button press and Invalid fields berfore exiting a NetWebForm
Post by: mtabakin on August 19, 2015, 08:20:58 AM
Kevin/Bruce,

Thanks! That's just the embed point I needed - if the user clicks cancel nothing happens in my post processing and if a field is invalid, nothing happens until they enter valid data into the field.