Navigation Question With the Back Button
#1
In my skin I have links in Home.xml that take you into the different libraries (movies, TV, etc.)

xml:

<control type="fixedlist" id="90010">
  <content>
    <item id="2">
      <label>movie library</label>
      <onclick>ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
    </item>
  </content>
</control>

I am using ",return" in ActivateWindow so that when I press the Backspace key, it goes back to Home.xml.

I have a bunch of other navigation links on the ViewsVideoLibrary.xml that update the container using
xml:

<control type="button">
    <label>recently added</label>
    <onfocus>Container.Update(special://skin/playlists/movie/RecentlyAddedMovies.xsp,replace)</onfocus>
</control>

But after the container is updated and I hit the Backspace key, it goes back to the list of Genres, Titles, Years, etc. instead of Home.xml

Is there a way to get it so that after the container is updated and the backspace key is pressed that it also goes back to Home.xml like it does when the container is first loaded with videodb://movies/titles/?
Reply

Logout Mark Read Team Forum Stats Members Help
Navigation Question With the Back Button0