Verify_Delete_msg - cWebBaseDEOServer

Specifies the message to use for delete confirmation

Type: Property

Access: Read/Write

Data Type: Handle

Parameters: None

Syntax
 Property Handle Verify_Delete_msg

Read Access: Get Verify_Delete_msg to HandleVariable
Write Access: Set Verify_Delete_msg to HandleVariable/Value


Description

Specifies the message to use for record delete confirmation.

The default value is DeleteConfirmation.

Sample

This sample sets delete confirmation to the default delete confirmation message.

Set Verify_Delete_msg to (RefProc(DeleteConfirmation))


Sample

This sample turns off the delete confirmation.

Set Verify_Delete_msg to 0


Sample

This sample sets the delete confirmation to a custom delete confirmation message.

Procedure MyDeleteConfirmation Handle hmCallBack
    Send ShowYesNo (Self) hmCallBack "Really Delete This Record?" "Delete Confirmation"
End_Procedure

Set Verify_Delete_Msg to (RefProc(MyDeleteConfirmation))


If you want to change the value of this property from it's class-level default value (for example, to make a particular view not cler after a save), you have to set this property in a data entry object (DEO) or data-aware container (e.g. cWebView) that has an explicit 'Set Server' statement, or the property value will not be used.