<exportOptions> Element

The exportOptions element is a member of the following categories:

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.

Attributes

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.

Usage notes

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.

Example

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


<!-- Renders the BI ExportOptions dialog --> <bibeans:exportOptions data:biExportOptions="page3_exportOpts1@bibeans:bisession1" />

<!-- Renders a UIX Apply button -->
<button textAndAccessKey="A&amp;pply"
data:onClick="page3_applyBtn@bibeans:bisession1" /> <!-- Renders a UIX Cancel button -->
<button textAndAccessKey="Cance&amp;l"
data:onClick="page3_cancelBtn@bibeans:bisession1" />