I have created a RootView and that view has 1 childview. Now when I open a document (file > open), only the RootView appaers. Is there something special that I must do to view also the childview(s) ?
What I do now :
In my Application class :
public RootView createRootView() {
RouteplannerPlayerRootView v = new RouteplannerPlayerRootView();
v.addChild(new RouteplannerPlayerView());
return v;
}
I think I must manually connect the child to a DocumentWindow but only rootviews are there allowed.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I have created a RootView and that view has 1 childview. Now when I open a document (file > open), only the RootView appaers. Is there something special that I must do to view also the childview(s) ?
What I do now :
In my Application class :
public RootView createRootView() {
RouteplannerPlayerRootView v = new RouteplannerPlayerRootView();
v.addChild(new RouteplannerPlayerView());
return v;
}
I think I must manually connect the child to a DocumentWindow but only rootviews are there allowed.