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 | Name of the navigation item | |
id | Id of the navigation item | |
content | Page of the navigation item | |
icon_n | Icon in normal state | |
icon_p | Icon in pressed state | |
icon_a | Icon in active state | |
subItem | INavigationItems[] | Child elements |
tchmi_button | Button control of the navigation item | |
icon | Icon of the navigation item | |
events | DestroyFunction of the button event |
Available from version 1.12.750 |