Hi There! I need to pass a token form one dashboard to another dashboard when clicking its pie chart Input in dashboard 1
</input>
<input type="multiselect" token="choose_office" searchWhenCh...
See more...
Hi There! I need to pass a token form one dashboard to another dashboard when clicking its pie chart Input in dashboard 1
</input>
<input type="multiselect" token="choose_office" searchWhenChanged="true">
<label>Front/Back office</label>
<choice value="Front Office">Front Office</choice>
<choice value="Back Office">Back Office</choice>
<initialValue>Front Office,Back Office</initialValue>
<default>Front Office,Back Office</default>
<valuePrefix>"</valuePrefix>
<valueSuffix>"</valueSuffix>
<delimiter>, </delimiter>
</input>
one of the searches in dashboard 1
`compliance_op`
| search office IN ($choose_office$)
| chart count by $scope$global
| sort $scope$global
My link to next dashboard is
<drilldown>
<link target="_blank">/app/SAsh/operational_beautiful?form.choose_office=$choose_office$&form.machine=$machine$&form.origin=$origin$&form.country=$country$&form.cacp=$cacp$&form.scope=$scope$</link>
</drilldown>
Multiselect in dashboard 2
<input type="multiselect" token="office_filter" searchWhenChanged="true">
<label>Front/Back Office</label>
<choice value="Front Office">Front Office</choice>
<choice value="Back Office">Back Office</choice>
<choice value="Unknown">Unknown</choice>
<prefix>office IN (</prefix>
<suffix>)</suffix>
<initialValue>Front Office,Back Office,Unknown</initialValue>
<valuePrefix>"</valuePrefix>
<valueSuffix>"</valueSuffix>
<delimiter>, </delimiter>
<change>
<eval token="office_filter_drilldown">mvjoin('form.office_filter',"&form.office_filter=")</eval>
</change>
</input>
search in dashboard 2
`compliance_ap`
| search office IN ($choose_office$)
| chart count by $scope$global
| sort $scope$global
I'm facing error in search of dashboard 2. Thanks!