The saveConfirmation element is a member of the following categories:
Namespace -- http://xmlns.oracle.com/bibeans
Group -- BI uiXML elements
Type of element -- Rendering component
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.
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.
The page that contains the Save Confirmation dialog should also contain Apply and Cancel buttons or links that you define as submitEventDef elements.
The following example shows an XML fragment that renders a saveConfirmation element in the UI tree section of a page using the following assumptions:
Identifier of the saveConfirmationDef element: "saveConf1"
Identifier of the page that contains the saveConfirmationDef element: "page3"
Identifier of the biThinSession element in which the saveConfirmationDef is defined: "bisession1"
Identifier of the submitEventDef element for the Apply button: "applyBtn"
Identifier of the submitEventDef element for the Cancel button: "cancelBtn"
<!-- Renders a BI SaveConfirmation dialog --> <bibeans:saveConfirmation data:biSaveConfirmation="page3_saveConf1@bibeans:bisession1" />
<!-- Renders a UIX Yes button -->
<button textAndAccessKey="&Yes"
data:onClick="page3_applyBtn@bibeans:bisession1" /> <!-- Renders a UIX No button -->
<button textAndAccessKey="&No"
data:onClick="page3_cancelBtn@bibeans:bisession1" />