For the module I'm developing I let users select different options of runnning the test. One of them is common, but suboptimal, so if the user selects this option, I show a note that says this option is generally not recommended. For this recommendation, I want to show a reference, but only if the not-recommended option is selected.
I have attached the reference to a part of the results-table which is only visible when the option is selected. So my r.yaml looks something like this:
```
- name: stat[cc]
title: '<i>z</i>-Value'
type: text
visible: (cc)
refs: [cf]
```
However, the reference is always visible, even when the option is not selected.
To complicate things further: There is another reference, which always needs to be shown.
Is there a way to achieve what I'm trying to do?
Thanks in advance for any tips
