Hi,
Got a new “bug” with the 6078
This navigation building does not work
<App Theme="Basic">
<JavaScript>
var Observable = require("FuseJS/Observable");
var NavLink = Observable('PlacesChild');
module.exports = {
NavLink : NavLink
}
</JavaScript>
<DockPanel>
<Panel Dock="Top" Height="30" Color="#000" />
<Page ux:Class="MyPage" Background="#fff">
<EnteringAnimation>
<Move X="-1" RelativeTo="ParentSize" Duration="1"/>
</EnteringAnimation>
<ExitingAnimation>
<Move X="1" RelativeTo="ParentSize" Duration="1"/>
</ExitingAnimation>
</Page>
<Panel>
<HierarchicalNavigation ux:Name="MainAppNav" Active="Places" />
<MyPage Background="Red" Name="Places">
<Button Height="50">
<Clicked>
<NavigateTo Target="{NavLink}"/>
</Clicked>
</Button>
</MyPage>
<MyPage Background="Blue" Name="PlacesChild" ux:AutoBind="false">
<Button Height="50">
<Clicked>
<GoBack/>
</Clicked>
</Button>
</MyPage>
</Panel>
</DockPanel>
</App>
It shows this when launched in preview
Warning: Data binding failed. No object named 'PlacesChild' of type Fuse.Node found
And the button does not work I tried with both Name=“PlacesChild” and ux:Name=“PlacesChild”.
Thanks.