<?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 fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461668#M30286</link>
    <description>&lt;P&gt;Hopefully done!&lt;/P&gt;</description>
    <pubDate>Sat, 14 Dec 2019 06:06:04 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2019-12-14T06:06:04Z</dc:date>
    <item>
      <title>How to fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461665#M30283</link>
      <description>&lt;P&gt;How to fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout.&lt;/P&gt;

&lt;P&gt;The current layout that I have, the inputs sections keeps changing when it goes to higher resolution screens ?&lt;/P&gt;

&lt;P&gt;Can I make the layout to be fixed ? @woodcock @niketnilay @martin_mueller &lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 11:19:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461665#M30283</guid>
      <dc:creator>sanjeev543</dc:creator>
      <dc:date>2019-12-13T11:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461666#M30284</link>
      <description>&lt;P&gt;I am pretty sure that this cannot be done, but if it can, @niketnilay is the guy to do it.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 11:37:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461666#M30284</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-12-13T11:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461667#M30285</link>
      <description>&lt;P&gt;@sanjeev543 before answering the question I would want to know the reason for turning responsive UI width into fixed?&lt;/P&gt;

&lt;P&gt;Whatever be your justification, if the panel id with inputs where you need to fix the panel width is &lt;CODE&gt;panel_fixed_inputs&lt;/CODE&gt; you can try the following CSS for turning panel width from 100% (responsive to static) i.e.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          #panel_fixed_inputs{
            width: 1480px !important;
          }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8063iE46E50728BC9698F/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is the complete run anywhere dashboard example&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Dashboard with fixed inputs&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;&amp;lt;/fieldset&amp;gt;
  &amp;lt;row depends="$alwaysHideCssStyle$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #panel_fixed_inputs{
            width: 1495px !important;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="panel_fixed_inputs"&amp;gt;
      &amp;lt;title&amp;gt;Panel with Fixed Width through CSS Override&amp;lt;/title&amp;gt;
      &amp;lt;input type="dropdown" token="field1"&amp;gt;
        &amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="dropdown" token="field4"&amp;gt;
        &amp;lt;label&amp;gt;field4&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="multiselect" token="field3"&amp;gt;
        &amp;lt;label&amp;gt;field3&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="multiselect" token="field5"&amp;gt;
        &amp;lt;label&amp;gt;field5&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="text" token="field2"&amp;gt;
        &amp;lt;label&amp;gt;field2&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="text" token="field6"&amp;gt;
        &amp;lt;label&amp;gt;field6&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel id="panel_responsive_inputs"&amp;gt;
      &amp;lt;title&amp;gt;Panel with responsive width&amp;lt;/title&amp;gt;
      &amp;lt;input type="dropdown" token="field01"&amp;gt;
        &amp;lt;label&amp;gt;field01&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="dropdown" token="field04"&amp;gt;
        &amp;lt;label&amp;gt;field04&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="multiselect" token="field03"&amp;gt;
        &amp;lt;label&amp;gt;field03&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="multiselect" token="field05"&amp;gt;
        &amp;lt;label&amp;gt;field05&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="text" token="field02"&amp;gt;
        &amp;lt;label&amp;gt;field02&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input type="text" token="field06"&amp;gt;
        &amp;lt;label&amp;gt;field06&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Dec 2019 18:48:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461667#M30285</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-12-13T18:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461668#M30286</link>
      <description>&lt;P&gt;Hopefully done!&lt;/P&gt;</description>
      <pubDate>Sat, 14 Dec 2019 06:06:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461668#M30286</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-12-14T06:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the dashboard layout irrespective of the screen resolution ? Especially the dashboard input section layout</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461669#M30287</link>
      <description>&lt;P&gt;how to do the same in the fieldset ?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 03:51:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-fix-the-dashboard-layout-irrespective-of-the-screen/m-p/461669#M30287</guid>
      <dc:creator>vikashperiwal</dc:creator>
      <dc:date>2020-03-19T03:51:00Z</dc:date>
    </item>
  </channel>
</rss>

