Hi, I face a issue with the submit button on xml dashboards. When i load the xml dashboard pre-populating the form tokens in the url like below, it automatically runs the searches in panel. However i want the panels to run only when submit is clicked after a user opens the prepopulated url like below: http://<ipaddress>/en-US/app/search/mw_dashboard/editxml?form.title=mw1&form.starttime=1599237529&form.endtime=1599241129&form.servicekey=39b975bf-7ab3-413d-ac90-e4063fb064d3 The dashboard code is as follows: <form>
<label>MW_Dashboard</label>
<fieldset submitButton="true" autoRun="false">
<input type="text" token="title" searchWhenChanged="false">
<label>Title</label>
</input>
<input type="text" token="starttime" searchWhenChanged="false">
<label>StartTime</label>
</input>
<input type="text" token="endtime" searchWhenChanged="false">
<label>EndTime</label>
</input>
<input type="text" token="servicekey" searchWhenChanged="false">
<label>ServiceKey</label>
</input>
</fieldset>
<row>
<panel>
<title>PostMW</title>
<table>
<search>
<query>| postservicemw $title$, $starttime$, $endtime$, $servicekey$</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
<!-- setting the tokens to have dependency between panels. using this token in the search of panel below will ensure this is done and the token is set -->
<progress>
<unset token="NOOP_1"></unset>
</progress>
<done>
<set token="NOOP_1">noop</set>
</done>
</search>
<option name="drilldown">none</option>
</table>
</panel>
</row>
<row>
<panel>
<title>GetMW</title>
<table>
<search>
<!-- The following dummy tokens are set to only run the search after all the inputs are set and submit button is clicked -->
<query>| eval dummytoken_title = $title$, dummytoken_starttime = $starttime$, dummytoken_endtime = $endtime$, dummytoken_panel1=$NOOP_1$| getmws</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
</table>
</panel>
</row>
</form> Any help on this issue will be awesome. Thanks and Regards, Divya
... View more