Hello,
I have this checkbox in my dashboard:
<input type="multiselect" token="t_case" searchWhenChanged="true">
<label>Cases</label>
<search base="base">
<query>| dedup Rule</query>
</search>
<delimiter> , </delimiter>
<fieldForLabel>Rule</fieldForLabel>
<fieldForValue>Rule</fieldForValue>
<default>FUAA01,NML02,WML01,WML02</default>
<valuePrefix>count(eval(Rule="</valuePrefix>
<valueSuffix>")) AS $value$</valueSuffix>
</input>
the problem is valueSuffix, it seems cannot be "dynamic" (i.e. the suffix is totally missing because it seems it cannot evaluate $value$ and it's totally lost).
this token is evaluated in a chart command and this should be the final output (with two selected values, for example):
chart count(eval(Rule="FUAA01")) AS FUAA101 , count(eval(Rule="NML02")) AS NML02 over date_month by CustomerID
Is there a way to achieve that, only with XML?
thanks,
Fausto
... View more