<?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: How to arrange the text inputs on my dashboard form? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189616#M11781</link>
    <description>&lt;P&gt;Thanks (y)&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2017 10:13:31 GMT</pubDate>
    <dc:creator>Kawtar</dc:creator>
    <dc:date>2017-12-12T10:13:31Z</dc:date>
    <item>
      <title>How to arrange the text inputs on my dashboard form?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189613#M11778</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;there are 4 text inputs in my form dashboard:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;input1 input2 input3 input4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is it possible to rearrange them (force a "new line" after input2)?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;input1 input2
input3 input4
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Aug 2014 08:28:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189613#M11778</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-08-21T08:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to arrange the text inputs on my dashboard form?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189614#M11779</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;InputsIntwoRows&amp;lt;/label&amp;gt; 
  &amp;lt;fieldset autoRun="false" submitButton="true"&amp;gt;
    &amp;lt;input type="time"&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliestTime&amp;gt;-24h@h&amp;lt;/earliestTime&amp;gt;
        &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="varIndex" id="field1"&amp;gt;
      &amp;lt;label&amp;gt;Index :&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;clm_stage&amp;lt;/default&amp;gt;
      &amp;lt;populatingSearch fieldForValue="index" fieldForLabel="index"&amp;gt;
        &amp;lt;![CDATA[| eventcount summarize=false index=* | dedup index ]]&amp;gt;
      &amp;lt;/populatingSearch&amp;gt;
    &amp;lt;/input&amp;gt;   
    &amp;lt;input type="dropdown" token="varSourceType" id="field2"&amp;gt;
      &amp;lt;label&amp;gt;Source Type :&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;populatingSearch fieldForValue="sourcetype" fieldForLabel="sourcetype"&amp;gt;
        &amp;lt;![CDATA[index=$varIndex$| stats count by sourcetype | fields sourcetype]]&amp;gt;
      &amp;lt;/populatingSearch&amp;gt;
    &amp;lt;/input&amp;gt;
     &amp;lt;html&amp;gt;
&amp;lt;br&amp;gt;&amp;lt;/br&amp;gt;   
      &amp;lt;br&amp;gt;&amp;lt;/br&amp;gt; 
      &amp;lt;br&amp;gt;&amp;lt;/br&amp;gt; 
      &amp;lt;br&amp;gt;&amp;lt;/br&amp;gt; 
       &amp;lt;br&amp;gt;&amp;lt;/br&amp;gt; 
    &amp;lt;/html&amp;gt;
    &amp;lt;input type="dropdown" token="varSource" id="field3"&amp;gt;
      &amp;lt;label&amp;gt;Source/File :&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;populatingSearch fieldForValue="source" fieldForLabel="source"&amp;gt;
        &amp;lt;![CDATA[ index=$varIndex$ sourcetype=$varSourceType$| stats count by source | fields source | eval source=replace(source,"\\x5c","\\\\") ]]&amp;gt;
      &amp;lt;/populatingSearch&amp;gt;
    &amp;lt;/input&amp;gt;    
    &amp;lt;input type="text" token="varFilter"&amp;gt;
      &amp;lt;label&amp;gt;Additional Filter (use '*' for exceptions, 'logEntryType=Summary' for transactions):&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;logEntryType=Summary&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;table&amp;gt;
      &amp;lt;title&amp;gt;Date&amp;lt;/title&amp;gt;
      &amp;lt;searchString&amp;gt;index=$varIndex$ sourcetype=$varSourceType$ source=$varSource$ $varFilter$ |timechart count&amp;lt;/searchString&amp;gt;
      &amp;lt;earliestTime&amp;gt;$earliest$&amp;lt;/earliestTime&amp;gt;
      &amp;lt;latestTime&amp;gt;$latest$&amp;lt;/latestTime&amp;gt;
      &amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;
      &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
      &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;option name="count"&amp;gt;5&amp;lt;/option&amp;gt;
    &amp;lt;/table&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Aug 2014 20:41:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189614#M11779</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-08-21T20:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to arrange the text inputs on my dashboard form?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189615#M11780</link>
      <description>&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2014 07:56:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189615#M11780</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-08-26T07:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to arrange the text inputs on my dashboard form?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189616#M11781</link>
      <description>&lt;P&gt;Thanks (y)&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 10:13:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-arrange-the-text-inputs-on-my-dashboard-form/m-p/189616#M11781</guid>
      <dc:creator>Kawtar</dc:creator>
      <dc:date>2017-12-12T10:13:31Z</dc:date>
    </item>
  </channel>
</rss>

