The saveDef element is a member of the following categories:
Namespace -- http://xmlns.oracle.com/bibeans
Group -- BI uiXML elements
Type of element -- Definition
Use the saveDef element to define the code that is required to fire the initialization event for a Save Confirmation dialog. The saveDef element is similar to the dialogLinkDef element except that it works only with the saveConfirmationDef element.
The saveDef element is used to supply a Save button or link on a UIX page that displays a thin presentation.
Note: There is no corresponding BI UIX element that renders the saveDef element. Instead, use any rendering component, such as a UIX button or link, to render the saveDef element.
id -- (Required) A unique identifier for this element.
presentationId -- (Required) Specifies the identifier of the presentationDef element that is to be saved.
saveConfirmationPage -- (Required) Specifies the identifier of the UIX page that contains the Save Confirmation dialog. This page is displayed to verify that the user intends to save the presentation.
saveConfirmationId -- (Required) Specifies the identifier of the saveConfirmationDef element that defines the SaveConfirmation thin dialog.
The saveDef element is a child of the biThinSessionElement and must be defined within the biThinSession.
The following XML fragment shows a sample in which the saveDef element is used to supply a "Save" button for a presentation. The sample uses the following assumptions:
Identifier of the presentationDef element: "pres1"
Identifier of the page that contains the presentationDef element: "page3"
Identifier of the biThinSession element in which the saveDef element is defined: "bisession1"
//Definition within the biSession element <bibeans:saveDef id="saveBtn1" presentationId="pres1" saveConfirmationPage="SaveConfirm1.uix" saveConfirmationId="saveConf1" /> //Displaying the Save button in the UI tree section // with a UIX button that refers to the id of the saveDef <button text="Save" data:onClick="page3_saveBtn1@bibeans:bisession1" />