Skip to main content
Nintex Community Menu Bar
Solved

Is it possible to reference Filter Set values to control component rendering?

  • July 12, 2024
  • 2 replies
  • 14 views

Forum|alt.badge.img+7

Hello! I am hoping to display a warning message to users if they select a combination of filter set values that are problematic for the use case. Specifically, we’re using a date field, and want to warn the user to double check their intentions if they select dates that span across two separate years. Does anyone know if it is possible to reference the filter values set by the user to control rendering?

Best answer by Rob_Hatch

The filter value is available as part of the Model global merge function. So you can grab those values and compare them in UI ONly formula field - and then use that field to drive some conditional rendering.

See the docs here

The merge syntax will look like this: $Model.OpenTasks.conditions.0.value

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • Answer
  • July 12, 2024

The filter value is available as part of the Model global merge function. So you can grab those values and compare them in UI ONly formula field - and then use that field to drive some conditional rendering.

See the docs here

The merge syntax will look like this: $Model.OpenTasks.conditions.0.value


Forum|alt.badge.img+7
  • Author
  • Rookie
  • July 12, 2024

Thanks Rob - I gave this a go and have it up and working! Always appreciate the guidance!