<?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: HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227106#M14079</link>
    <description>&lt;P&gt;I wouldn't classify it as a bug since putting an &lt;CODE&gt;h&lt;/CODE&gt; tag there is well-formed HTML. I'd guess that the parser in 6.1 assumed an &lt;CODE&gt;h&lt;/CODE&gt; tag, whereas the 6.2 parser requires an &lt;CODE&gt;h&lt;/CODE&gt; tag, reducing the potential for errors due to errors when guessing the HTML structure.&lt;/P&gt;

&lt;P&gt;You could write a script to update these dashboard panels using command line tools like awk and sed, or a scripting language like python or ruby.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Nov 2015 18:08:05 GMT</pubDate>
    <dc:creator>nnmiller</dc:creator>
    <dc:date>2015-11-16T18:08:05Z</dc:date>
    <item>
      <title>HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227103#M14076</link>
      <description>&lt;P&gt;I've the following code which is working perfectly fine with Splunk 6.1:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;div class="dashboard-cell" style="width: 30%;"&amp;gt;
            &amp;lt;div class="dashboard-panel"&amp;gt;
                &amp;lt;div class="panel-head"&amp;gt;
                    &amp;lt;div align="center" class="abc"&amp;gt;Panel Title&amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
                &amp;lt;div class="panel-body"&amp;gt;
                    &amp;lt;!-- Place panel contents here --&amp;gt;
                &amp;lt;/div&amp;gt;
           &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But when I moved this to Splunk 6.2, I'm not able to see the "Panel Title". It just flashes for a moment when the page loads and then goes away. If I use &amp;lt;h&amp;gt; tags instead of &amp;lt;div&amp;gt; under class="panel-head", then I'm able to see that.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;div class="dashboard-cell" style="width: 30%;"&amp;gt;
            &amp;lt;div class="dashboard-panel"&amp;gt;
                &amp;lt;div class="panel-head"&amp;gt;
                    &amp;lt;h3&amp;gt;Panel Title&amp;lt;/h3&amp;gt;
                &amp;lt;/div&amp;gt;
                &amp;lt;div class="panel-body"&amp;gt;
                    &amp;lt;!-- Place panel contents here --&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;So can anybody explain me this behavior?&lt;BR /&gt;
Thanks in advance!!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 14:55:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227103#M14076</guid>
      <dc:creator>chahal3108</dc:creator>
      <dc:date>2015-11-13T14:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227104#M14077</link>
      <description>&lt;P&gt;Those tags and div classes are available in 6.2, so that's a bit strange. Try checking your browser's web console to see if any errors are being logged. If you are using Firefox:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;either select "Web Console" from the Web Developer submenu in the Firefox Menu (or Tools menu if you display the menu bar or are on Mac OS X) &lt;/LI&gt;
&lt;LI&gt;or press the --K (--K on OS X) keyboard shortcut.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Further info here: &lt;A href="https://developer.mozilla.org/en-US/docs/Tools/Web_Console/Opening_the_Web_Console"&gt;Opening the Web Console&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 19:41:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227104#M14077</guid>
      <dc:creator>nnmiller</dc:creator>
      <dc:date>2015-11-13T19:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227105#M14078</link>
      <description>&lt;P&gt;There are no errors on the console. I checked that in different browsers but the result is same.&lt;BR /&gt;
Even I'm not sure why Splunk 6.2+ is expecting only an &lt;CODE&gt;h&lt;/CODE&gt; tag under &lt;CODE&gt;div class="panel-head"&lt;/CODE&gt; tag. Is it a bug?&lt;BR /&gt;
This caused a great trouble for me as the whole CSS needs to be changed to get the same styling as Splunk 6.1 dashboard.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2015 12:15:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227105#M14078</guid>
      <dc:creator>chahal3108</dc:creator>
      <dc:date>2015-11-15T12:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227106#M14079</link>
      <description>&lt;P&gt;I wouldn't classify it as a bug since putting an &lt;CODE&gt;h&lt;/CODE&gt; tag there is well-formed HTML. I'd guess that the parser in 6.1 assumed an &lt;CODE&gt;h&lt;/CODE&gt; tag, whereas the 6.2 parser requires an &lt;CODE&gt;h&lt;/CODE&gt; tag, reducing the potential for errors due to errors when guessing the HTML structure.&lt;/P&gt;

&lt;P&gt;You could write a script to update these dashboard panels using command line tools like awk and sed, or a scripting language like python or ruby.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2015 18:08:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227106#M14079</guid>
      <dc:creator>nnmiller</dc:creator>
      <dc:date>2015-11-16T18:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227107#M14080</link>
      <description>&lt;P&gt;Yeah did that only. Thanks for your help !!!&lt;BR /&gt;
If you want you can submit this as answer. I'll accept it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 07:47:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227107#M14080</guid>
      <dc:creator>chahal3108</dc:creator>
      <dc:date>2015-11-18T07:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: HTML compatibility issues between Splunk 6.1 and 6.2. Why does my panel title disappear when the page loads in 6.2?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227108#M14081</link>
      <description>&lt;P&gt;Glad I was able to help. Changed to an answer.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 13:20:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HTML-compatibility-issues-between-Splunk-6-1-and-6-2-Why-does-my/m-p/227108#M14081</guid>
      <dc:creator>nnmiller</dc:creator>
      <dc:date>2015-11-18T13:20:44Z</dc:date>
    </item>
  </channel>
</rss>

