Is AppConnect fully compatible with Framework7?? I’m trying to build a Mobile App and followed the steps in the docu to create mobile pages with framework7. It seems to work only partially.
If I use AppConnect / Framework7 and an API Source Component on the index.html page it works fine…I can see data on the page.
But on any sub page that is being routed from index.html the same does not work. Nothing seems to get fired…no data is being displayed in dynamic attributes. Looks like the api source component doesn’t get executed.
thanks for your answer. Yes, I’m using the supplied app.js and it looks exactly like the one in your response.
That is working correctly in my subpage:
<p dmx-text="‘TEST BINDING’">TEST CONTENT</p>
On sub-page load it will replace TEST CONTENT with TEST BINDING
What is NOT working is when I use the api component on the same sub-page:
<dmx-api-datasource id=“api1” is=“dmx-fetch” url=“https://www.test.com/api/…’” ></dmx-api-datasource>
…
<p dmx-text=“api1.data[0].projektname”>TEST CONTENT 2</p>
It wont update…
If I add this on the root index.html it will work perfectly…