Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

Menu items can be filtered based on custom criteria, such as a company number, using these steps:

...

Add a record to this file for each desired menu item, user/group, and filter string combination. See Atrium Database for file details. For example:

Menu Item Filter File (ATNAVFP)
ANFITEMANFIDANFILTER
110COMPANYA
210COMPANYB

These records will cause menu item #1 to be hidden for user/group 10 unless the user selects filter criteria 'COMPANYA'. For the same user/group, menu item #2 will be hidden unless the user selects 'COMPANYB'.

...

Code Block
languagehtml/xml
<label>Select company:</label>
<select onchange="Atrium.setMenuFilter(this.value);">
  <option value="COMPANYA">Company A</option>
  <option value="COMPANYB">Company B</option>
</select>

 

 

...