FacNavBar Events
The FacNavBar object contains the following event:
OnSelChangeLevel
This event is fired when the user changes the selected item in any of the facility attribute filter combo boxes.
Syntax
FacNavBar_EventOnSelChangeLevel(Level As Short)
Parameters
| Parameter | Required | Description |
|---|---|---|
|
Level |
Yes |
Indicates the level of the facility attribute filter that was changed. |
Example
The following example loads the Group Grid Control with new facility information when any of the FacNavBar’s facility attribute filter combo boxes is changed. This example is taken from the FacNavBar Example (FacNavBar_GrpGrid.csf) found in the APPS SCREXAMP folder.
Copy
OnSelChangeLevel
Sub FacNavBar_EventOnSelChangeLevel(Level)
Dim This : Set This = FacNavBar
LoadGrid()
End Sub

