Hello,
Let's make is more clear for me and let's say you have following document structure:
root document
-- page 1 (menu item)
---- document 1.1 (custom doc. type)
---- document 1.2 (custom doc. type)
-- page 2 (menu item)
---- document 2.1 (custom doc. type)
---- document 2.2 (custom doc. type)
-- page 3 (menu item)
---- document 3.1 (custom doc. type)
---- document 3.2 (custom doc. type)
And you want to generate a menu which displays menu items from first level of document hierarchy and your document types from second, right? If so, there are many ways how to do that (including your mentioned 'Behaves as Page (menu item) type' functionality):
1) You can specify document types to be rendered in the menu by setting the
Document types property of a navigation web part and in combination with menu group (described below) for menu items, only appropriate children will be displayed
2) You can add a new field (
MenuItemGroup) or set
Inherits fields from document type as 'Page (menu item)' for your document type
3) You can take advantage of the
WHERE condition property of a navigation web part and specify documents to be rendered in a menu
You need to specify the
WHERE condition property anyway to display just those documents which has set the
MenuItemGroup field to some value like:
MenuItemGroup = 'top' OR MenuItemGroup IS NULL
Best regards,
Jan Hermann