Fluent 2 Nav Control Item Schemas

 avatar
unknown
plain_text
8 days ago
1.2 kB
0
Indexable
Fluent 2 Nav Control Item Schemas

Button:
{
    ItemKey: "Text",
    ItemDisplayName: "Text",
    ItemIconName: "Text", //See the Button control's icon property for a full list of Fluent 2 Icons
    ItemScreen: Screen,
    ItemType: "Button",
    ItemOpen: false, //Can be set to true to have an item opened by default upon loading the app
    ItemParentKey: "Text", //ItemKey of a parent item if this button should appear under a dropdown
    ItemVisible: true //Can be set to true or false using formulas to hide buttons dynamically
}

Divider:
{
    ItemKey: "Text",
    ItemType: "Divider"
}

Category:
{
    ItemKey: "Text",
    ItemDisplayName: "Text",
    ItemType: "Category"
}

Dropdown:
{
    ItemKey: "Text",
    ItemDisplayName: "Text",
    ItemIconName: "Text", //See the Button control's icon property for a full list of Fluent 2 Icons
    ItemScreen: Blank(), //Should always be blank for dropdowns. No navigation occurs when clicking dropdown
    ItemType: "Dropdown",
    ItemOpen: false, //Set this to true if dropdown should be open by default
    ItemParentKey: Blank(), //Should always be blank for dropdowns.
    ItemVisible: true //Can be set to true or false using formulas to hide buttons dynamically  
}
Leave a Comment