I have a very simple navigationMenu.plist
from one example in the Wonder site:
(
{
name = Root;
directActionClass = DirectAction;
directActionName = default;
children = "session.navigationRootChoice";
childrenChoices = {
home = (
Posts,
Authors,
);
};
},
{
name = "Posts";
action = "session.navController.listPostsAction";
children = ("CreatePost","SearchPosts");
conditions = ("context.hasSession");
},
{
name = CreatePost;
action = "session.navController.createPostAction";
},
{
name = SearchPosts;
action = "session.navController.searchPostsAction";
},
{
name = Authors;
action = "session.navController.listAuthorsAction";
children = ("CreateAuthor","SearchAuthors");
},
{
name = CreateAuthor;
action = "session.navController.createAuthorAction";
},
{
name = SearchAuthors;
action = "session.navController.searchAuthorsAction";
}
)
However, when I run the application, submenus are not shown. I am pretty sure this has to be a property that needs to be turned on. Any ideas will be appreciated.
Thanks.