Getting Data In

If passing a parameter from main dashboard to next view, how to show this parameter as read only in the label or input type field?

vishal_bandavad
Explorer

I am passing a parameter from main dashboard to next view. I want to show that parameter to the user in the label or input type field. If i use Input type="text" , it becomes editable. I want to make this field read only. i have used readonly="readonly" in, but it's not working . please help.

0 Karma

somesoni2
Revered Legend

Have this setup in your search app.

dashboard1.xml

<dashboard>
  <label>Dashboard1</label>
  <row>
    <panel>     
     <table>            
<searchString>
        index=_internal | stats count by sourcetype
      </searchString>
      <earliestTime>-60m</earliestTime>
      <latestTime>now</latestTime>
            <drilldown target="My New Window">
           <link>
              /app/search/dashboard2?sourcetype=$row.sourcetype$
            </link>
          </drilldown>
          </table>
        </panel>
      </row>
    </dashboard>

dashboard2.xml

 <dashboard>
  <label>Dashboard2</label>  
  <row>
    <panel>
      <html>
       <h1>$sourcetype$</h1>
      </html>
      <table>
        <search>
          <query>index=_internal sourcetype=$sourcetype$ | stats count</query>
          <earliest>-60m@m</earliest>
          <latest>now</latest>
        </search>
        <option name="wrap">undefined</option>
        <option name="rowNumbers">undefined</option>
        <option name="drilldown">row</option>
      </table>
    </panel>
  </row>
</dashboard>
0 Karma

SirHill17
Communicator

Is that solution to pass the paramater from dashboard1 to dashboard2 works ?

I tried but dashboard2 is not able to get the value.

0 Karma

somesoni2
Revered Legend

Add an html element in your dashboard to show read-only content. E.g.

    <form>
  <label>Form name</label>
  <fieldset submitButton="false" autoRun="true">
    <input ..........">
      .........
    </input>
     .........
     ......
    <html>
      <h1>$msgCode$</h1>
    </html>

vishal_bandavad
Explorer

Thanks Soni,
But you need to define a token in tag to show the parameter. so by default it shows input type box. which is editable.

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...