<saveConfirmation> Element

The saveConfirmation element is a member of the following categories:

Use the saveConfirmation element to render an instance of a Save Confirmation dialog that is typically defined by a saveConfirmationDef element in the current page.

Attributes

biSaveConfirmation -- (Required) A data-bound attribute that binds to a Save Confirmation dialog. Specify the select key for the Save Confirmation dialog that you want to render.

Note: The remaining attributes are not used.

Usage notes

The page that contains the Save Confirmation dialog should also contain Apply and Cancel buttons or links that you define as submitEventDef elements.

Example

The following example shows an XML fragment that renders a saveConfirmation element in the UI tree section of a page using the following assumptions:


<!-- Renders a BI SaveConfirmation dialog --> <bibeans:saveConfirmation data:biSaveConfirmation="page3_saveConf1@bibeans:bisession1" />


<!-- Renders a UIX Yes button -->
<button textAndAccessKey="&amp;Yes"
data:onClick="page3_applyBtn@bibeans:bisession1" /> <!-- Renders a UIX No button -->
<button textAndAccessKey="&amp;No"
data:onClick="page3_cancelBtn@bibeans:bisession1" />