<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: 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? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196513#M39091</link>
    <description>&lt;P&gt;Add an html element in your dashboard to show read-only content. E.g.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Form name&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
    &amp;lt;input .........."&amp;gt;
      .........
    &amp;lt;/input&amp;gt;
     .........
     ......
    &amp;lt;html&amp;gt;
      &amp;lt;h1&amp;gt;$msgCode$&amp;lt;/h1&amp;gt;
    &amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 05 Nov 2014 22:06:30 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2014-11-05T22:06:30Z</dc:date>
    <item>
      <title>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?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196512#M39090</link>
      <description>&lt;P&gt;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. &lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2014 21:31:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196512#M39090</guid>
      <dc:creator>vishal_bandavad</dc:creator>
      <dc:date>2014-11-05T21:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: 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?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196513#M39091</link>
      <description>&lt;P&gt;Add an html element in your dashboard to show read-only content. E.g.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Form name&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
    &amp;lt;input .........."&amp;gt;
      .........
    &amp;lt;/input&amp;gt;
     .........
     ......
    &amp;lt;html&amp;gt;
      &amp;lt;h1&amp;gt;$msgCode$&amp;lt;/h1&amp;gt;
    &amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Nov 2014 22:06:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196513#M39091</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-11-05T22:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: 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?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196514#M39092</link>
      <description>&lt;P&gt;Thanks Soni,&lt;BR /&gt;
            But you need to define a token in &lt;INPUT /&gt;  tag to show the parameter. so by default it shows input type box. which is  editable.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2014 22:16:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196514#M39092</guid>
      <dc:creator>vishal_bandavad</dc:creator>
      <dc:date>2014-11-05T22:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: 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?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196515#M39093</link>
      <description>&lt;P&gt;Have this setup in your search app.&lt;/P&gt;

&lt;P&gt;dashboard1.xml&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Dashboard1&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;     
     &amp;lt;table&amp;gt;            
&amp;lt;searchString&amp;gt;
        index=_internal | stats count by sourcetype
      &amp;lt;/searchString&amp;gt;
      &amp;lt;earliestTime&amp;gt;-60m&amp;lt;/earliestTime&amp;gt;
      &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
            &amp;lt;drilldown target="My New Window"&amp;gt;
           &amp;lt;link&amp;gt;
              /app/search/dashboard2?sourcetype=$row.sourcetype$
            &amp;lt;/link&amp;gt;
          &amp;lt;/drilldown&amp;gt;
          &amp;lt;/table&amp;gt;
        &amp;lt;/panel&amp;gt;
      &amp;lt;/row&amp;gt;
    &amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;dashboard2.xml&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Dashboard2&amp;lt;/label&amp;gt;  
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
       &amp;lt;h1&amp;gt;$sourcetype$&amp;lt;/h1&amp;gt;
      &amp;lt;/html&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=$sourcetype$ | stats count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-60m@m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;undefined&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;undefined&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;row&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Nov 2014 01:12:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196515#M39093</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-11-06T01:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: 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?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196516#M39094</link>
      <description>&lt;P&gt;Is that solution to pass the paramater from dashboard1 to dashboard2 works ?&lt;/P&gt;

&lt;P&gt;I tried but dashboard2 is not able to get the value.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 14:56:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/If-passing-a-parameter-from-main-dashboard-to-next-view-how-to/m-p/196516#M39094</guid>
      <dc:creator>SirHill17</dc:creator>
      <dc:date>2015-09-16T14:56:02Z</dc:date>
    </item>
  </channel>
</rss>

