Reference Qualifier based on the other field value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-06-2019 01:50 AM
Hi Team,
How to limit the values for a reference field based on the other field value.
The first variable is of type select_box and is used to set the category.
The second variable is a reference field, which should only show the records where the category agrees.
Both variables refer to the same table.
I tried to use the following reference qual. for the second variable
javascript: 'u_category = '+current.variables.software_leistungsfeld
but it doesn't work.
Can some help me?
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2024 08:29 AM
For anyone looking at this the above Reference Qualifier has a space in it before and after the '=' which would not work. The code should look like this: javascript: 'u_category='+current.variables.software_leistungsfeld;