onafterupdate Event

             

Occurs after a record is updated.

Syntax

objRS_onafterupdate

Parameters

object

A Recordset script object.

Remarks

The onafterupdate event fires after the UpdateRecord method has been called successfully on the Recordset script object. You may use this to communicate additional information to the user after the update.

Example

function myRS_onafterupdate()
{
   var ID;
   ID = "Your record has been updated. The ID is " + myRS.fields.getValue("id");
   Label.setCaption(ID);
}