Skip to Content
3
May 08, 2018 at 01:10 PM

Custom feed tile for SAP Fiori Lauchpad

325 Views Last edit May 08, 2018 at 01:13 PM 2 rev

Hello. I'm developing a custom app with as a custom feed with slide tile. The code is working in webide, but after i creating a new app in fiori launchap, give me this error:

The image below is the expected result. And its working in a normal SAPUI5 app.

This is the code that i'm using.

<core:View controllerName="com.its.customslidetile.CustomSlideTile" xmlns="sap.m" xmlns:core="sap.ui.core">
	<SlideTile class="sapUiTinyMarginBegin sapUiTinyMarginTop" tiles="{/noticias}">
		<GenericTile backgroundImage="{img}" frameType="TwoByOne" press="pressOnTileOne">
			<TileContent footer="{title}">
				<NewsContent contentText="{text}"/>
			</TileContent>
		</GenericTile>
	</SlideTile>
</core:View>

And this is the app configuration in SAP Fiori Lauchpad.