LogoLogo
  • Getting Started
    • Overview
    • Download components
    • Installing Components
    • Using a component
    • lowcodera App Tokens
  • UI Components
    • lowcodera UI Assets
    • Button
    • Card
    • Date time picker
    • Dropdown Menu
    • Horizontal Navbar
    • Icon
    • PowerGrid
    • Progress Bar
    • TextBox
    • Vertical Navbar
  • Visualization Components
  • Area Chart
  • Bar Chart
  • Column Chart
  • Donut Chart
  • Heatmap Chart
  • Kanban Board
  • Swimlane
  • Line Chart
  • Mixed Chart
  • Pie Chart
  • Polar Chart
  • Radar Chart
  • Radial Chart
  • Strategic Roadmap
  • Scatter Chart
  • Timeline Chart
  • Properties Reference
    • UI Component Properties
    • Chart Component Properties
    • Navbar Schema
  • Page 1
Powered by GitBook
On this page

Was this helpful?

  1. Properties Reference

Navbar Schema

lowcodera Navigation bar JSON Schema reference

Navigation Configuration Schema

For lowcodera Navbar bar components, we need to develop a navigation configuration schema. Here's the example along with property description.

Syntax

ClearCollect(
    globalnav,
    {
        type: "DropDown",
        title: "Employee Corner",
        icon: "object-group",
        key: "ec",
        dropDown: [
            {
                type: "Action",
                title: "Log Timesheet",
                key: "logtimesheet"
            },
            {
                type: "Action",
                title: "Apply Leave",
                key: "leave"
            },
            {
                type: "Action",
                title: "My Projects",
                key: "projects"
            }
        ]
    },
    {
        type: "Action",
        icon: "cog",
        key: "settings",
    }
    
)

Description of Schema

Attribute

Description

Accepted Values

type

Property to configure dropdown or action label for navigation bar

dropdown

action

title

Property to set label for navigation component

string

icon

Property to configure icon name for a navigation label

string

key

Property to configure the key for navigation element which can be useful to write onchange event

string

dropDown

Property to provide dropdown schema for the navigation

JSON

PreviousChart Component PropertiesNextPage 1

Last updated 3 years ago

Was this helpful?