i have one dashboard that consist two tokens, one token having name "resources" and another "WebWorkerInstanceName". i am able to set value of "resources" token that is populating from table where as "WebWorkerInstanceName" token need default value that should be empty but i am not able to assign empty value to "WebWorkerInstanceName" token.
Both tokens are further used in search string that are not accepting the empty value. i am not able to assign the (null or empty) value as default value to "WebWorkerInstance" token because it is showing (null or empty) as string in search string. Below is my code for the same.
<!-- Use set to specify the new token to be created.
Use any token from the page or from the click event to produce the value needed. -->
<set token="Resources">$row.Resources$</set>
<!-- If we also set the form.sourcetype the input will get updated too -->
<set token="form.Resources">$row.Resources$</set>
<!-- Use set to specify the new token to be created.
Use any token from the page or from the click event to produce the value needed. -->
<set token="WebWorkerInstanceName"></set>
<!-- If we also set the form.sourcetype the input will get updated too -->
<set token="form.WebWorkerInstanceName"></set>
Please guide me about the default value to be (null or empty) for any token which can be accepted by search string.
Thanks
Avikash
... View more