Hello All,
I try to create an AppSite and a Widget, where I want to reference my SAPUI5 project.
I created a SAPUI5 Application Project and placed a simple Table object in it (sap.ui.table.Table). It works without problems when I go directly to its URL in the browser.
Then I created the AppSite, a widget and the widget specification file as described in the HANA Developer Documentation (page 257).
Widget Specification File:
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="TestWidget">
</ModulePrefs>
<Content type="html" href="/path/to/my/index.html"></Content>
</Module>
When I start the AppSite in the browser and embed the newly created widget in it, only the static HTML content of the referenced SAPUI5 Application Project index.html is displayed in die widget window (e.g. "Hello World", but not the
dynamically created sap.ui.table.Table object.
Can you give me any hints what could be wrong?
Thanks
Christoph