<?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: Remove group name showing in panel headers when using tabs and switcher module in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93740#M6365</link>
    <description>&lt;P&gt;Sure.  If your view is called "your_view_name_here",  then you would use this custom CSS. &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;.splView-your_view_name_here .dashboardCell .splHeader-dashboard,&lt;BR /&gt;
.splView-your_view_name_here .dashboardCell .splLastRefreshed {&lt;BR /&gt;
    display:none;&lt;BR /&gt;
}&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;note that "splView-" has a hyphen!&lt;/P&gt;

&lt;P&gt;as a custom CSS refresher, you put the above snippet into either into&lt;BR /&gt;
1) application.css,   or &lt;BR /&gt;
2) a custom CSS file in the app, referenced in the view's "stylesheet" attribute, or &lt;BR /&gt;
3) a custom CSS file in the app, referenced as one of the stylesheets referenced in the SideviewUtils module's "customStylesheet" param.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 12:38:56 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2020-09-28T12:38:56Z</dc:date>
    <item>
      <title>Remove group name showing in panel headers when using tabs and switcher module</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93737#M6362</link>
      <description>&lt;P&gt;I'm using the tabs and switcher module in Sideview utils to control other modules on the page.  However, the default group is being shown as a header for every panel.  How can I remove this?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 18:20:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93737#M6362</guid>
      <dc:creator>jchampagne</dc:creator>
      <dc:date>2012-10-17T18:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remove group name showing in panel headers when using tabs and switcher module</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93738#M6363</link>
      <description>&lt;P&gt;The solution is to put &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;group=" "
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;on the Tabs module itself.   You might have seen this in the examples.  I'll take a look back and my Tabs docs and mention this explicitly if I'm not already. &lt;/P&gt;

&lt;P&gt;Basically the dashboard template  (the code that runs whenever you have template="dashboard.html"  up in the view tag),  has some weird conventions around what group attributes "mean".   One of those conventions is that in views that use the dashboard template,  any group attribute found within a particular layoutPanel, will be pulled up and displayed as a green panel header. &lt;/P&gt;

&lt;P&gt;Since the Tabs module, and also the Table module and Switcher modules &lt;EM&gt;also&lt;/EM&gt; rely on group attributes for key functionality, the two conventions can collide, and unwanted green headers can appear.   I tried pretty hard to find some better way to fix it at a deeper level, but the best workaround at the moment is to put group=" " in where it's needed,  OR to use custom CSS to make the green headers completely invisible on the given view. &lt;/P&gt;

&lt;P&gt;In the long run, the way I want to fix this problem is to actually provide a template in Sideview Utils that is designed to replace the Splunk dashboard template entirely.  However this is a bit of an undertaking to do right, so I it's unlikely to happen any time soon. &lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 19:51:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93738#M6363</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-10-17T19:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove group name showing in panel headers when using tabs and switcher module</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93739#M6364</link>
      <description>&lt;P&gt;Thanks Nick!&lt;/P&gt;

&lt;P&gt;I think I want to go the CSS route.  Is is possible to add code to the dashboard header tag using Sideview?&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2012 14:43:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93739#M6364</guid>
      <dc:creator>jchampagne</dc:creator>
      <dc:date>2012-10-18T14:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remove group name showing in panel headers when using tabs and switcher module</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93740#M6365</link>
      <description>&lt;P&gt;Sure.  If your view is called "your_view_name_here",  then you would use this custom CSS. &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;.splView-your_view_name_here .dashboardCell .splHeader-dashboard,&lt;BR /&gt;
.splView-your_view_name_here .dashboardCell .splLastRefreshed {&lt;BR /&gt;
    display:none;&lt;BR /&gt;
}&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;note that "splView-" has a hyphen!&lt;/P&gt;

&lt;P&gt;as a custom CSS refresher, you put the above snippet into either into&lt;BR /&gt;
1) application.css,   or &lt;BR /&gt;
2) a custom CSS file in the app, referenced in the view's "stylesheet" attribute, or &lt;BR /&gt;
3) a custom CSS file in the app, referenced as one of the stylesheets referenced in the SideviewUtils module's "customStylesheet" param.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:38:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Remove-group-name-showing-in-panel-headers-when-using-tabs-and/m-p/93740#M6365</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2020-09-28T12:38:56Z</dc:date>
    </item>
  </channel>
</rss>

