janmeskens - 2005-04-06

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.