I have a dashboard with tokens on it: Token1, Token2, and Token3.
I have a table that contains multiple columns: x, y, z.
When I click the value of column x, I want to update Token1 on the same page.
When I click the value of column y, I want to update Token2 and so on.
When I click a column I only want to update the corresponding token and not the rest of the tokens.
I figured it out. I was initially using set instead of eval. I need to use something like this:
<drilldown>
<condition field="x">
<eval token="form.Token1">$click.value2$</eval>
</condition>
<condition field="y">
<eval token="form.Token2">$click.value2$</eval>
</condition>
<condition field="z">
<eval token="form.Token3">$click.value2$</eval>
</condition>
</drilldown>
I figured it out. I was initially using set instead of eval. I need to use something like this:
<drilldown>
<condition field="x">
<eval token="form.Token1">$click.value2$</eval>
</condition>
<condition field="y">
<eval token="form.Token2">$click.value2$</eval>
</condition>
<condition field="z">
<eval token="form.Token3">$click.value2$</eval>
</condition>
</drilldown>