I'm trying to create a tiddler with substories. All tiddlers tagged with "Microwiki" must open in that tiddler.
The code is:
<$navigator story="MySubStoryList" history="MySubHistoryList">
<$list filter="[tag[Microwiki]]" history="MySubHistoryList" template="$:/core/ui/ViewTemplate" editTemplate="$:/core/ui/EditTemplate">
<div>
<$transclude/>
</div>
</$list>
<hr/>
</$navigator>
I want to edit that tiddlers inside this main one as the same way as the main tiddlywiki: it changes from view mode to edit mode in the same position. The problem is when I pick the edit icon the tiddler opens in edit mode under all tiddlers of the story but it keesp the original tiddler open in view mode above the story river.
I cant imagine what is the way to do this.