<printOptions> Element

The printOptions element is a member of the following categories:

Use the printOptions element to render a Print Options dialog, which is typically defined by a printOptionsDef element in the current page.

Attributes

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.

Usage notes

The page that contains the Print Options dialog should also contain Apply and Cancel buttons or links that you define as submitEventDef elements.

Example

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:


<!-- Renders the BI PrintOptions dialog --> <bibeans:printOptions data:biPrintOptions="page3_printOpts1@bibeans:bisession1" /> <!-- Renders a UIX Print 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" />