The exportOptions 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 exportOptions element to render an Export Options dialog, which allows users to set options for exporting a presentation to a file. Typically the Export Options dialog is defined by an exportOptionsDef element in the same page as the exportOptions element.
biExportOptions -- (Required) A data-bound attribute that binds to an Export Options dialog. Specify the select key for the Export Options dialog that you want to render.
Note: The remaining attributes are not used.
The page that contains the Export Options dialog should also include Apply and Cancel buttons or links that render submitEventDef elements. In a BLAF application, you can use a BIPageButtonBar for both buttons.
The following example shows an XML fragment that renders an exportOptions element in the UI tree section of a page using the following assumptions:
Identifier of the exportOptionsDef element: "exportOpts1"
Identifier of the page that contains the exportOptionsDef element: "page3"
Identifier of the biThinSession element in which the exportOptionsDef element is defined: "bisession1"
Identifier of the submitEventDef element for the Apply button: "applyBtn"
Identifier of the submitEventDef element for the Cancel button: "cancelBtn"
<!-- Renders the BI ExportOptions dialog --> <bibeans:exportOptions data:biExportOptions="page3_exportOpts1@bibeans:bisession1" />
<!-- Renders a UIX Apply button -->
<button textAndAccessKey="A&pply"
data:onClick="page3_applyBtn@bibeans:bisession1" /> <!-- Renders a UIX Cancel button -->
<button textAndAccessKey="Cance&l"
data:onClick="page3_cancelBtn@bibeans:bisession1" />