1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: rs
- (C) Copyright IBM Corp. 2003, 2014
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <resources>
- <dialog id="_bjl" idsDialogTitle="IDS_TITLE_SHOWSQL" helpId="dlgShowSQL" borderStyle="sizable" startupWidth="400" startupHeight="300">
- <dialogHtml><![CDATA[
- <div onkeypress="_bjl._wph( event )">
- <div>
- <div HAL_dlgItemId="divRootPane" HAL_paneId="ShowSQLDlgPane"></div>
- <div HAL_paneId="ShowSQLComboBoxPane">
- <table HAL_dlgItemId="cboSQLType" style="width:200px; margin-bottom:var(--16S)" HAL_idsAriaLabel="IDS_AC_QUERY_TYPE"></table>
- </div>
- <div HAL_paneId="ShowSQLTextAreaPane">
- <textarea HAL_dlgItemId="taSQL" style="overflow:auto; background-color:transparent" HAL_isSelectable="true" readOnly="true" HAL_idsAriaLabel="IDS_TITLE_SHOWSQL"></textarea>
- </div>
- <div HAL_paneId="ShowSQLButtonBarPane">
- <div HAL_dlgItemId="divButtonBar" class="clsDlgButtonBar">
- <button class="clsDlgButton" onclick="_bjl._bgn()" HAL_isDefault="true" HAL_ids="IDS_HAL_BTN_CLOSE"></button>
- <button HAL_dlgItemId="btnConvertToSQL" style="width:auto" class="clsDlgButton" onclick="_bjl._yde()" HAL_ids="IDS_BTN_COVERTTOSQL"></button>
- </div>
- </div>
- </div>
- </div>
- ]]></dialogHtml>
- <externalScripts>
- <externalScript src="hal/_uzf.js"/>
- <externalScript src="hal/_jgk.js"/>
- <externalScript src="cchl/_957.js"/>
- <externalScript src="_pf2.js"/>
- </externalScripts>
- </dialog>
- <comboBox id="SQLTypes">
- <listView>
- <listItems>
- <listItem value="native" idsLabel="IDS_PROPVAL_NATIVE_SQL"/>
- <listItem value="cogSQL" idsLabel="IDS_PROPVAL_COGNOS_SQL"/>
- </listItems>
- </listView>
- </comboBox>
- <panes id="ShowSQLDlgPane">
- <columnPane id="ShowSQLColumnPane" defaultWidth="*" parentResizeBehaviour="resize" minWidth="200px">
- <rowPane id="ShowSQLComboBoxPane" defaultHeight="autoFromContents" parentResizeBehaviour="fixed"/>
- <rowPane id="ShowSQLTextAreaPane" defaultHeight="*" parentResizeBehaviour="resize" minHeight="40px" fillPaneWith="_bjl_taSQL"/>
- <rowPane id="ShowSQLButtonBarPane" defaultHeight="autoFromContents" parentResizeBehaviour="fixed" fillPaneWith="_bjl_divButtonBar"/>
- </columnPane>
- </panes>
- </resources>
|