Thank you Sai, off course here is the code of the view:
<IconTabFilter id="iconTabFilter2" key="" icon="sap-icon://enter-more" text="Image Kontroll"> <content> <VBox> <Image id="oImage" densityAware="false" class="customIMG"> <layoutData> <FlexItemData growFactor="1" /> </layoutData> </Image> <Button text="Load Image" icon="sap-icon://download" press="_onPress" /> </VBox> </content> </IconTabFilter>
and the funcion for inserting the image:
_onPress: function(evt) {
var src = "/sap/opu/odata/sap/ZUI5_TEST_TVC_SRV/ZUI5_TEST_TVALUES_2_SET(ATNAM='FIORI_TESTMODELL___JPEG',ATWRT='BA___SE___BL')/$value";
var oImage = this.getView().byId("oImage");
oImage.setSrc(src);
},
I have also verified standard fiori apps with images (employee lookup) and the problem does not occur in IE.
Thank you again,
Gabriel