I try to learn the Intel Appframework UI.
I want to build a simple offline app with just two panels. One panel contains a list with items (links), the second panel should display details to the selected item. The details in the second panel should be filled with javascript.
How do I pass data (for example a numeric item_id) to the second panel, so that my javascript can access it and fill it into the details page?
Can I use a part of the url of the links in the list, like this:
<li>
<a href="#detailpanel?item=3"> Item 3 </a>
</li>
If yes, how do I get the information back in the details page? Or do I need to use javacript-links?