I'm trying to build a prototype for a inventory system, and I'm trying to use
D2W in that system. Problem is that my navigation doesn't work. I have two
first-level children, Computers and Mobile, and each have two children. Problem
is: I only see the tabs for Computers and Mobile, the sub tabs don't appears.
My NavigationMenu.plist file:
(
{
name = Root;
directActionClass = DirectAction;
directActionName = default;
children = ("Computers", "Mobile");
},
{
name = "Computers";
action = "session.navController.listComputersAction";
children = ("CreateComputer","SearchComputers");
},
{
name = "CreateComputer";
action = "session.navController.createComputerAction";
},
{
name = "SearchComputers";
action = "session.navController.searchComputersAction";
},
{
name = "Mobile";
action = "session.navController.listMobileDevicesAction";
children = ("CreateMobileDevice","SearchMobileDevices");
},
{
name = "CreateMobileDevice";
action = "session.navController.createMobileDeviceAction";
},
{
name = "SearchMobileDevices";
action = "session.navController.searchMobileDevicesAction";
}
)
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to [email protected]