INavigationItem

[ Interface ]

export interface INavigationItems {
    name: string;
    id: string;
    content: string;
    icon_n: string;
    icon_P: string;
    icon_a: string;
    subitem?: INavigationItem[];
    accessRight: AccessControl[];
    tchmi_button: TcHmi.Control.Beckhoff.TcHmiButton | undefined;
    icon: JQuery | undefined;
    events?: DestroyFunction[];
}

Properties

Name

Type

Description

name

string

Name of the navigation item

id

string

Id of the navigation item

content

string

Page of the navigation item

icon_n

string

Icon in normal state

icon_p

string

Icon in pressed state

icon_a

string

Icon in active state

subItem

INavigationItems[]

Child elements

tchmi_button

TcHmi.Control.Beckhoff.TcHmiButton

Button control of the navigation item

icon

JQuery

Icon of the navigation item

events

DestroyFunction[]

DestroyFunction of the button event

INavigationItem 1:

Available from version 1.12.750