I am using a dynamic dropdown, with the below search
<basesearch> |dedup REGN|table REGN
When i run this search i see the below results
But, when I use the above search in the dropdown, I see populating displayed for a while and then when I click the Dropdown, i see the below and the circle spins forever. What am I doing wrong here? Below is my Dropdown code
<input type="dropdown" token="Region" searchWhenChanged="true">
<search>
<query><basesearch>| dedup REGN | table REGN</query>
<earliest>-60m@m</earliest>
<latest>now</latest>
</search>
<fieldForLabel>Region</fieldForLabel>
<fieldForValue>Region</fieldForValue>
</input>
Also, can i use the Shared TimePicker for the dynamic dropdown query?
... View more