<?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 How to Add New Tab on main App in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103053#M5821</link>
    <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;I want to add new tab "Summary" in one of the App main screen next to Search tab. i tried to create new view for it but it goes under "View" drop-down but I want it next to main tabs. &lt;/P&gt;

&lt;P&gt;Example:&lt;BR /&gt;
Search(tab) Dashboard(tab) Summary(tab) View(tab) Search&amp;amp;Report(tab) &lt;BR /&gt;
hope Its clear what I am trying to do. &lt;/P&gt;

&lt;P&gt;Thanks &lt;/P&gt;</description>
    <pubDate>Thu, 19 Jul 2012 11:08:48 GMT</pubDate>
    <dc:creator>nikhilagrawal</dc:creator>
    <dc:date>2012-07-19T11:08:48Z</dc:date>
    <item>
      <title>How to Add New Tab on main App</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103053#M5821</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;I want to add new tab "Summary" in one of the App main screen next to Search tab. i tried to create new view for it but it goes under "View" drop-down but I want it next to main tabs. &lt;/P&gt;

&lt;P&gt;Example:&lt;BR /&gt;
Search(tab) Dashboard(tab) Summary(tab) View(tab) Search&amp;amp;Report(tab) &lt;BR /&gt;
hope Its clear what I am trying to do. &lt;/P&gt;

&lt;P&gt;Thanks &lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2012 11:08:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103053#M5821</guid>
      <dc:creator>nikhilagrawal</dc:creator>
      <dc:date>2012-07-19T11:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Add New Tab on main App</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103054#M5822</link>
      <description>&lt;P&gt;Hi There,&lt;/P&gt;

&lt;P&gt;What you need to do is add an entry in the default navigation menu for your new summary view.&lt;/P&gt;

&lt;P&gt;In the GUI: &lt;STRONG&gt;Manager &amp;gt; User Interface &amp;gt; Navigation Menus &amp;gt; default&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Before&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;nav&amp;gt;
    &amp;lt;view name="dashboard_live" default='true' /&amp;gt;
    &amp;lt;view name="flashtimeline" /&amp;gt;
    &amp;lt;collection label="Dashboards"&amp;gt;
        &amp;lt;view source="unclassified" match="dashboard"/&amp;gt;
        &amp;lt;divider /&amp;gt;
    &amp;lt;/collection&amp;gt;
    &amp;lt;collection label="Views"&amp;gt;
        &amp;lt;view source="unclassified" /&amp;gt;
        &amp;lt;divider /&amp;gt;
    &amp;lt;/collection&amp;gt;
    &amp;lt;collection label="Searches &amp;amp;amp; Reports"&amp;gt;
        &amp;lt;collection label="Reports"&amp;gt;
            &amp;lt;saved source="unclassified" match="report" /&amp;gt;
        &amp;lt;/collection&amp;gt;
        &amp;lt;divider /&amp;gt;
        &amp;lt;saved source="unclassified" /&amp;gt;
    &amp;lt;/collection&amp;gt;
&amp;lt;/nav&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;After&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;nav&amp;gt;
    &amp;lt;view name="Summary" default='true' /&amp;gt;  &amp;lt;== Line added
    &amp;lt;view name="dashboard_live" /&amp;gt;  &amp;lt;== "default='true'" removed
    &amp;lt;view name="flashtimeline" /&amp;gt;
    &amp;lt;collection label="Dashboards"&amp;gt;
        &amp;lt;view source="unclassified" match="dashboard"/&amp;gt;
        &amp;lt;divider /&amp;gt;
    &amp;lt;/collection&amp;gt;
    &amp;lt;collection label="Views"&amp;gt;
        &amp;lt;view source="unclassified" /&amp;gt;
        &amp;lt;divider /&amp;gt;
    &amp;lt;/collection&amp;gt;
    &amp;lt;collection label="Searches &amp;amp;amp; Reports"&amp;gt;
        &amp;lt;collection label="Reports"&amp;gt;
            &amp;lt;saved source="unclassified" match="report" /&amp;gt;
        &amp;lt;/collection&amp;gt;
        &amp;lt;divider /&amp;gt;
        &amp;lt;saved source="unclassified" /&amp;gt;
    &amp;lt;/collection&amp;gt;
&amp;lt;/nav&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will add a menu tab for the "Summary" view, with the name visible in the menu being whatever the title is in the "Summary" view itself.&lt;/P&gt;

&lt;P&gt;Hope this helps &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2012 12:04:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103054#M5822</guid>
      <dc:creator>rturk</dc:creator>
      <dc:date>2012-07-19T12:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to Add New Tab on main App</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103055#M5823</link>
      <description>&lt;P&gt;thanks that worked.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2012 10:50:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-Add-New-Tab-on-main-App/m-p/103055#M5823</guid>
      <dc:creator>nikhilagrawal</dc:creator>
      <dc:date>2012-07-20T10:50:19Z</dc:date>
    </item>
  </channel>
</rss>

