The printOptions 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 printOptions element to render a Print Options dialog, which is typically defined by a printOptionsDef element in the current page.
biPrintOptions -- (Required) A data-bound attribute that binds to a Print Options dialog. Specify the select key for the Print Options dialog that you want to render.
Note: The remaining attributes are not used.
The page that contains the Print Options 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 Print Options dialog in the UI tree section of a page using the following assumptions:
Identifier of the printOptionsDef element: "printOpts1"
Identifier of the page that contains the printOptionsDef element: "page3"
Identifier of the biThinSession element in which the presentationDef 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 PrintOptions dialog --> <bibeans:printOptions data:biPrintOptions="page3_printOpts1@bibeans:bisession1" /> <!-- Renders a UIX Print 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" />