Hi David,
When you click "save" while editing, the beforeupdate delegate is called "before" the update is sent to the server and the afterupdate delegate is called after the update successfully...
Type: Posts; User: barrymavin
Hi David,
When you click "save" while editing, the beforeupdate delegate is called "before" the update is sent to the server and the afterupdate delegate is called after the update successfully...
Hi Simon
All you are doing there is updating the UI. Programatic updates like that do not affect the active cursor that the UI control is bound to so when the update is sent to the server it sends...
Hi Simon
Did you mean to write:
Lianja.getElementByID("pcust.scust.txtname").value = “Smith”
Try opening the example_webapp1 app and run it. You will see the before update and after update...
Hi Simon,
"However FYI from the GUI, BeforeUpdate() is NOT called from the save button, but only by repressing the edit button."
What GUI are you referring to? The web client or the App...
Hi Simon
The "afteredit" delegate is the wrong place to do this as this is called when you exit "editmode"/ This elegate is typically used to re-show UI elements that were hidden in the "before...