Horizontal Navbar
Lowcodera Horizontal Navigation Bar Component
Last updated
Table(
{
type: "DropDown",
title: "Employee Corner",
icon: "object-group",
key: "ec",
dropDown: ForAll([
{
type: "Action",
title: "Log Timesheet",
key: "logtimesheet"
},
{
type: "Action",
title: "Apply Leave",
key: "leave"
},
{
type: "Action",
title: "My Projects",
key: "projects"
}
], {Value: ThisRecord})
},
{
type: "DropDown",
title: "HR Corner",
icon: "chart-area",
key: "hrcorner",
containerIdentifier: "contactConainer",
height: 150,
direction: "bottom-start",
dropDown: ForAll([
{
type: "Action",
title: "HR Policies",
key: "policies"
},
{
type: "Action",
title: "TimeSheet",
key: "timesheet"
},
{
type: "Action",
title: "Leave Approval",
key: "approval"
},
{
type: "Action",
title: "Notifications",
key: "notification"
}
], {Value: ThisRecord})
},
{
type: "Action",
icon: "cog",
key: "settings",
title: "Settings"
},
{
type: "Action",
key: "user",
icon: "user-circle",
title: "User"
}
)Switch(
HorizontalNavBar1.CurrentKey,
"0",
Navigate(Home),
"logtimesheet",
Navigate(Home),
"leave",
Navigate(Navbar),
"projects",
Navigate(Buttons),
"policies",
Navigate(Icons),
"timesheet",
Navigate(Cards),
"approval",
Navigate(Dropdown),
"notification",
Navigate('Bar Chart'),
"settings",
Navigate('Column Chart'),
"user"
)
ClearCollect(
Nav4,
{
type: "Action",
icon: "bell",
key: "Option1",
title: "Item 1"
},
{
type: "Action",
title: "Item 2",
key: "Option2",
icon: "share-square"
},
{
type: "Action",
title: "Item 3",
icon: "user-circle",
key: "Option3"
}
)