12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!--
- 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="_cqc" idsDialogTitle="IDS_TITLE_SHOWSQL" helpId="dlgShowReportSQL" borderStyle="sizable" startupWidth="640" startupHeight="480">
- <dialogHtml><![CDATA[
- <div onkeypress="_cqc._wph( event )">
- <div HAL_dlgItemId="divPanes" HAL_paneId="_cqc_Panes"></div>
- <div HAL_dlgItemId="MainRowPane" HAL_paneId="_cqc_MainRowPane"></div>
- <div HAL_dlgItemId="LeftRowLabelPane" HAL_paneId="_cqc_LeftRowLabelPane">
- <div HAL_ids="IDS_QUERY_RESULTS" class="clsLabel"></div>
- </div>
- <div HAL_dlgItemId="RightRowLabelPane" HAL_paneId="_cqc_RightRowLabelPane">
- <div HAL_ids="IDS_GENERATED_SQL" class="clsLabel"></div>
- </div>
- <div HAL_dlgItemId="LeftRowPane" HAL_paneId="_cqc_LeftRowPane" style="padding-right:7px">
- <div HAL_dlgItemId="divQRDs" class="clsTreeView" style="width:200px; height:350px" tabIndex="0" HAL_idsAriaLabel="IDS_QUERY_RESULTS"></div>
- </div>
- <div HAL_dlgItemId="RightRowPane" HAL_paneId="_cqc_RightRowPane">
- <fieldset HAL_dlgItemId="fsMain" class="clsDialogText" style="padding-top:3px; overflow:hidden">
- <div style="padding:7px 0px 0px 7px">
- <!-- Deck -->
- <div HAL_dlgItemId="deckMain">
- <!-- Card [0] No Selection -->
- <div HAL_ids="IDS_NO_QRD_SELECTED" tabIndex="0" role="gridcell">
- </div>
- <!-- Card [1] No SQL/MDX -->
- <div HAL_ids="IDS_NO_SQL_AVAILABLE" tabIndex="0" role="gridcell">
- </div>
- <!-- Card [2] Data Item Properties -->
- <div>
- <table HAL_dlgItemId="cboSQLType" style="width:180px" HAL_idsAriaLabel="IDS_GENERATED_SQL"></table>
- <textarea HAL_dlgItemId="taSQL" style="height:200px; width:400px; overflow:auto; background-color:transparent" HAL_isSelectable="true" readOnly="true" HAL_idsAriaLabel="IDS_GENERATED_SQL"></textarea>
- </div>
- </div>
- </div>
- </fieldset>
- </div>
- <div HAL_paneId="_cqc_ButtonBarPane">
- <div class="clsDlgButtonBar" HAL_dlgItemId="divButtonBar">
- <button class="clsDlgButton" onclick="_cqc._bgn()" HAL_isDefault="true" HAL_ids="IDS_HAL_BTN_CLOSE"></button>
- </div>
- </div>
- </div>
- ]]></dialogHtml>
- <externalScripts>
- <externalScript src="cchl/_957.js"/>
- <externalScript src="_pf2.js"/>
- </externalScripts>
- </dialog>
- <comboBox id="TypeInTypes">
- <listView>
- <listItems>
- <listItem value="native" idsLabel="IDS_PROPVAL_NATIVE_SQL"/>
- <listItem value="mdx" idsLabel="IDS_PROPVAL_NATIVE_MDX"/>
- <listItem value="cogSQL" idsLabel="IDS_PROPVAL_COGNOS_SQL"/>
- </listItems>
- </listView>
- </comboBox>
- <panes id="Panes">
- <rowPane id="_cqc_MainRowPane" defaultHeight="*" minHeight="200px" parentResizeBehaviour="resize">
- <columnPane id="_cqc_LeftColumnPane" defaultWidth="200px" minWidth="200px" parentResizeBehaviour="resize" splitterResizeBehaviour="resize">
- <rowPane id="_cqc_LeftRowLabelPane" defaultHeight="autoFromContents" parentResizeBehaviour="fixed"/>
- <rowPane id="_cqc_LeftRowPane" defaultHeight="*" minHeight="200px" parentResizeBehaviour="resize" fillPaneWith="_cqc_divQRDs"/>
- </columnPane>
- <columnSplitter classPrefix="clsInvisibleSplitterVertical"/>
- <columnPane id="_cqc_RightColumnPane" defaultWidth="*" minWidth="200px" parentResizeBehaviour="resize" splitterResizeBehaviour="resize">
- <rowPane id="_cqc_RightRowLabelPane" defaultHeight="autoFromContents" parentResizeBehaviour="fixed"/>
- <rowPane id="_cqc_RightRowPane" defaultHeight="*" minHeight="200px" parentResizeBehaviour="resize" fillPaneWith="_cqc_fsMain"/>
- </columnPane>
- </rowPane>
- <rowPane id="_cqc_ButtonBarPane" defaultHeight="autoFromContents" parentResizeBehaviour="fixed" fillPaneWith="_cqc_divButtonBar"/>
- </panes>
- </resources>
|