Normally a sourceOnShow
will only use the first page of the route as its
URL, but by specifying deep: true
the entire route will be used to
identify the content to load. This makes it possible to load arbitrarily nested content
into the same page-element.
<div data-bind="page: {id: 'start'}"> <a href="#!/view/deep_load_content_into_wildcard/deep/character/fry">Go to Fry</a> </div> <div data-bind="page: {id: 'deep'}"> <h3>Character</h3> <div data-bind="page: {id: '?', deep: true, sourceOnShow: '{1}.html'}"> </div> </div>