1
我對xml.view工作,Master.controller.js我有保持路徑的varabile,我想這條道路綁定Detail.xml.view上的iframe。我怎麼做。如何綁定變量xml.view
Master.controller.js
var sURI = '/sap/opu/odata/sap/ZHE_FAT_ONAY_SRV' + sRead + '/$value';
Detail.xml.view
<IconTabFilter
icon="sap-icon://pdf-attachment" >
<form:SimpleForm
id="Fatura2"
minWidth="1024">
<core:Title text="Display PDF " />
<!-- Display iframe should be here -->
<core:HTML id="idFrame"/>
</form:SimpleForm>
</IconTabFilter>
我試着如master.controller.js下面的代碼,但它不工作。
var oHtml = this.getView().byId("idFrame");
oHtml.setContent("<iframe src=" + sURI + " height='700' width='100%'></iframe>");
你是對的,oHtml沒有定義我應該怎麼做?, 是不是可能引用同一時間主視圖和詳細視圖?因爲我在GW服務上使用了兩套數據集之一,另一套是pdfset, – user3018689