Hello Guys,
I have a Content collapsible block in one of my pages, and a inset listview inside it. In order to select and item from the list I have to un-collapse the block. When I tap an element in the list, it takes me to another internal page.
Now here is the problem, when I want to go back from the internal page to the page with the collapsible block and listview, I created a link/button called Back in order to go back to the previous page.
here is the code
- <a href="#" onclick="history.back()" data-icon="arrow-l" data-direction="reverse">Back</a>
When I do this, it goes to the previous page, however, all the collapsible block are collapsed.
I also tried this:
- <a href="#List" data-icon="arrow-l" data-direction="reverse">Back</a>
But this one send me to the very first page that I open on application startup even if the previous page id=List.
By the way I also added
- data-add-back-btn="true"
to the div of the new page but it has the same effect as the first case.
Thanks in advance!