<?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 drilldown from panel having image to other panel having images ? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383504#M25146</link>
    <description>&lt;P&gt;@jitendragupta - can you please reply on my above queries ?&lt;/P&gt;</description>
    <pubDate>Mon, 15 Jul 2019 06:49:57 GMT</pubDate>
    <dc:creator>pgadhari</dc:creator>
    <dc:date>2019-07-15T06:49:57Z</dc:date>
    <item>
      <title>How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383500#M25142</link>
      <description>&lt;P&gt;I have 5 panels in a row, each panel has an image embedded in it using HTML. I want to create a drill-down so that I can click on the image in a particular panel and it should load another panel below which should show another image. So, respectively if I click image in other panel, it should load in the same panel below. My Scenario :&lt;BR /&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/7313iCD5C599C8C88D0E3/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;&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/7314i4D404DB314CF04BA/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;Top panel has the image of the datacenter holistic Racks, when I click that image - it should show each Row i.e. Row A having 10 Racks and Row B having 10 Racks in the below panel. I have already created a html page (having image) for that, the only thing is I need to load into the panel by creating a drilldown from the top panel.  Attaching screenshots for the same. &lt;/P&gt;

&lt;P&gt;how do I achieve it ?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 07:25:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383500#M25142</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-10T07:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383501#M25143</link>
      <description>&lt;P&gt;As per my understanding, u have 5 panels in first row and 1 panel in second row. And u want that user can click on any of the five panels from first row and corresponding detailed image should come in second row.&lt;BR /&gt;
U already have ur dashboard designed in html. So to achieve this add 5 rows containing detailed image corresponding to 5 panels of first row and add show/hide function.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                    $("#row1").show();
                    $("#row2").hide();
                    $("#row3").hide();
                    $("#row4").hide();
                    $("#row5").hide();

                     $("#panel1").click(function(){
                        $("#row1").show();
                        $("#row2").hide();
                        $("#row3").hide();
                        $("#row4").hide();
                        $("#row5").hide();
                    });
                     $("#panel2").click(function(){
                        $("#row2").show();
                        $("#row1").hide();
                        $("#row3").hide();
                        $("#row4").hide();
                        $("#row5").hide();
                    });
                     $("#panel3").click(function(){
                        $("#row3").show();
                        $("#row1").hide();
                        $("#row2").hide();
                        $("#row4").hide();
                        $("#row5").hide();
                    });
                    $("#panel4").click(function(){
                        $("#row4").show();
                        $("#row1").hide();
                        $("#row2").hide();
                        $("#row3").hide();
                        $("#row5").hide();
                    });
                    $("#panel5").click(function(){
                        $("#row5").show();
                        $("#row1").hide();
                        $("#row2").hide();
                        $("#row3").hide();
                        $("#row4").hide();
                    });
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jul 2019 12:10:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383501#M25143</guid>
      <dc:creator>jitendragupta</dc:creator>
      <dc:date>2019-07-10T12:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383502#M25144</link>
      <description>&lt;P&gt;@jitendragupta - where do I actually need to put the above code in my Dashboard. Can you guide on that ? I am attaching the code for the same. Apart from that, &lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;I am trying to use flexbox css properties, but it is getting applied to all the images, wherein I don't want it to be applied in first main row ?&lt;/LI&gt;
&lt;LI&gt;For Racks, flexbox is working, but somehow when I hover on that image, it is getting hide behind the panel from down, how do I make the whole rack visible outside the panel or any other way ?&lt;/LI&gt;
&lt;LI&gt;Attaching the CSS file also, do I need to create each panel row as different id ?&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;My Dashboard code :&lt;/P&gt;

&lt;P&gt;Image Dashboard Clone&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
  &amp;lt;title&amp;gt;Network&amp;lt;/title&amp;gt;
  &amp;lt;html&amp;gt;
              &amp;lt;h3&amp;gt;
                 &amp;lt;b&amp;gt;
                    &amp;lt;img src="/static/app/search/pod.png"/&amp;gt;
                 &amp;lt;/b&amp;gt;
               &amp;lt;/h3&amp;gt;
            &amp;lt;/html&amp;gt;
          &amp;lt;/panel&amp;gt;
          &amp;lt;panel&amp;gt;
  &amp;lt;title&amp;gt;Infrastructure&amp;lt;/title&amp;gt;
  &amp;lt;html&amp;gt;
              &amp;lt;h3&amp;gt;
                 &amp;lt;b&amp;gt;
                    &amp;lt;img src="/static/app/search/pod.png" /&amp;gt;
                 &amp;lt;/b&amp;gt;
               &amp;lt;/h3&amp;gt;
            &amp;lt;/html&amp;gt;
          &amp;lt;/panel&amp;gt;
          &amp;lt;panel&amp;gt;
  &amp;lt;title&amp;gt;Storage&amp;lt;/title&amp;gt;
  &amp;lt;html&amp;gt;
              &amp;lt;h3&amp;gt;
                 &amp;lt;b&amp;gt;
                    &amp;lt;img src="/static/app/search/pod.png"/&amp;gt;
                 &amp;lt;/b&amp;gt;
               &amp;lt;/h3&amp;gt;
            &amp;lt;/html&amp;gt;
          &amp;lt;/panel&amp;gt;
&amp;lt;/row&amp;gt;

&amp;lt;panel id="test"&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;Network Racks&amp;lt;/h1&amp;gt;
      &amp;lt;div&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;


&amp;lt;panel&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;Network Racks&amp;lt;/h1&amp;gt;
      &amp;lt;div&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;


&amp;lt;panel&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;Infrastructure Racks&amp;lt;/h1&amp;gt;
      &amp;lt;div&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;


&amp;lt;panel&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;Infrastructure Racks&amp;lt;/h1&amp;gt;
      &amp;lt;div&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;


&amp;lt;panel&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;Storage Racks&amp;lt;/h1&amp;gt;
      &amp;lt;div&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;


&amp;lt;panel&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;h1&amp;gt;Storage Racks&amp;lt;/h1&amp;gt;
      &amp;lt;div&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
          &amp;lt;img src="/static/app/search/Rack-A1.png"&amp;gt;&amp;lt;/img&amp;gt;
      &amp;lt;/div&amp;gt;
  &amp;lt;/html&amp;gt;
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My CSS file :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

 img {
    width: 100px;
    height: 250px;
    margin: 2px;
    transition: all 1s;
}

img:hover {
    transform: scale(1.4);
}

h1 {
    font-family: fantasy;
    font-size: 2em;
    border-bottom: 2px solid;
    border-right: 2px solid;
    width: 470px;
    text-align: center;
    box-shadow: 4px 4px 5px #888888;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please help to resolve this ?&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jul 2019 17:33:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383502#M25144</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-13T17:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383503#M25145</link>
      <description>&lt;P&gt;If there are any other ways of beautifying this dashboard based on clicks, that also you can suggest please. Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jul 2019 17:38:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383503#M25145</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-13T17:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383504#M25146</link>
      <description>&lt;P&gt;@jitendragupta - can you please reply on my above queries ?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2019 06:49:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383504#M25146</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-15T06:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383505#M25147</link>
      <description>&lt;P&gt;My previous answer was for HTML dashboard, not for XML dashboard using HTML tag in it. You have to add that code in javascript section of html code. I have converted yr code to HTML and modified it as per ur requirements. Please check.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge" /&amp;gt;
    &amp;lt;title&amp;gt;test&amp;lt;/title&amp;gt;
    &amp;lt;link rel="shortcut icon" href="/en-US/static/@A355AFB27EEAA7F8B8580D369873D5E6410C8A39BE47873A36FD947C3062A3E6/img/favicon.ico" /&amp;gt;
    &amp;lt;link rel="stylesheet" type="text/css" href="{{SPLUNKWEB_URL_PREFIX}}/static/build/css/bootstrap-enterprise.css" /&amp;gt;
    &amp;lt;link rel="stylesheet" type="text/css" href="{{SPLUNKWEB_URL_PREFIX}}/static/build/css/splunkjs-dashboard.css" /&amp;gt;

        &amp;lt;meta name="referrer" content="never" /&amp;gt;
        &amp;lt;meta name="referrer" content="no-referrer" /&amp;gt;

          &amp;lt;script&amp;gt;
                window._splunk_metrics_events = {
                   push : function() {},
                   active: false,}
          &amp;lt;/script&amp;gt;
    &amp;lt;/head&amp;gt;
&amp;lt;body class="simplexml preload locale-en" data-splunk-version="7.3.0" data-splunk-product="splunk"&amp;gt;
&amp;lt;!--
BEGIN LAYOUT
This section contains the layout for the dashboard. Splunk uses proprietary
styles in &amp;lt;div&amp;gt; tags, similar to Bootstrap's grid system.
--&amp;gt;
&amp;lt;header&amp;gt;
    &amp;lt;a aria-label="Screen reader users, click here to skip the navigation bar" class="navSkip" href="#navSkip" tabIndex="1"&amp;gt;Skip Navigation &amp;gt;&amp;lt;/a&amp;gt;
    &amp;lt;div class="header splunk-header"&amp;gt;
            &amp;lt;div id="placeholder-splunk-bar"&amp;gt;
                &amp;lt;a href="{{SPLUNKWEB_URL_PREFIX}}/app/launcher/home" class="brand" title="splunk &amp;gt; listen to your data"&amp;gt;splunk&amp;lt;strong&amp;gt;&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;
            &amp;lt;/div&amp;gt;
                &amp;lt;div id="placeholder-app-bar"&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;a id="navSkip"&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/header&amp;gt;
&amp;lt;div class="dashboard-body container-fluid main-section-body" data-role="main"&amp;gt;
    &amp;lt;div class="dashboard-header clearfix"&amp;gt;
        &amp;lt;h2&amp;gt;test&amp;lt;/h2&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="row1" class="dashboard-row dashboard-row1"&amp;gt;
        &amp;lt;div id="panel1" class="dashboard-cell" style="width: 33.33%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;
                &amp;lt;h2 class="panel-title"&amp;gt;Network&amp;lt;/h2&amp;gt;

                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div id="element1" class="dashboard-element html" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body html"&amp;gt;
                                &amp;lt;h3&amp;gt;&amp;lt;b&amp;gt;&amp;lt;img src="https://www.propylon.com/wp-content/uploads/2018/11/computer-98401_640.png"&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/h3&amp;gt;
                        &amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div id="panel2" class="dashboard-cell" style="width: 33.33%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;
                &amp;lt;h2 class="panel-title"&amp;gt;Infrastructure&amp;lt;/h2&amp;gt;

                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div id="element2" class="dashboard-element html" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body html"&amp;gt;
                                &amp;lt;h3&amp;gt;&amp;lt;b&amp;gt;&amp;lt;img src="https://www.propylon.com/wp-content/uploads/2018/11/computer-98401_640.png"&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/h3&amp;gt;
                        &amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div id="panel3" class="dashboard-cell" style="width: 33.33%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;
                &amp;lt;h2 class="panel-title"&amp;gt;Storage&amp;lt;/h2&amp;gt;

                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div id="element3" class="dashboard-element html" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body html"&amp;gt;
                                &amp;lt;h3&amp;gt;&amp;lt;b&amp;gt;&amp;lt;img src="https://www.propylon.com/wp-content/uploads/2018/11/computer-98401_640.png"&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/h3&amp;gt;
                        &amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="row2" class="dashboard-row dashboard-row2"&amp;gt;
        &amp;lt;div id="test" class="dashboard-cell" style="width:100%;" data-original-id="test"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;

                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div id="element4" class="dashboard-element html" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body html"&amp;gt;
                                &amp;lt;h1&amp;gt;Network Racks&amp;lt;/h1&amp;gt;&amp;lt;div&amp;gt;&amp;lt;img src="http://www.fiber-optic-solutions.com/wp-content/uploads/2018/09/Cable-Management.jpg"&amp;gt;&amp;lt;/div&amp;gt;
                        &amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="row3" class="dashboard-row dashboard-row3"&amp;gt;
        &amp;lt;div id="panel4" class="dashboard-cell" style="width:100%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;

                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div id="element5" class="dashboard-element html" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body html"&amp;gt;
                                &amp;lt;h1&amp;gt;Infrastructure Racks&amp;lt;/h1&amp;gt;&amp;lt;div&amp;gt;&amp;lt;img src="https://banner2.kisspng.com/20180325/dow/kisspng-computer-servers-19-inch-rack-it-infrastructure-de-server-5ab740e7681c26.8375372715219591434264.jpg"&amp;gt;&amp;lt;/div&amp;gt;
                        &amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;div id="row4" class="dashboard-row dashboard-row4"&amp;gt;
        &amp;lt;div id="panel5" class="dashboard-cell" style="width: 100%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;

                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div id="element6" class="dashboard-element html" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body html"&amp;gt;
                                &amp;lt;h1&amp;gt;Storage Racks&amp;lt;/h1&amp;gt;&amp;lt;div&amp;gt;&amp;lt;img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSvdoasC9-31RhU3Zdb6q27m9bVqpjJ_mn3ujrEetfxAftJhiBr"&amp;gt;&amp;lt;/div&amp;gt;
                        &amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;     
    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;!--
END LAYOUT
--&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/config?autoload=1" crossorigin="use-credentials"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/static/js/i18n.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/i18ncatalog?autoload=1"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/static/build/simplexml/index.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script type="text/javascript"&amp;gt;

                    $("#row2").show();
                     $("#row3").hide();
                     $("#row4").hide();

                      $("#panel1").click(function(){
                         $("#row2").show();
                         $("#row3").hide();
                         $("#row4").hide();

                     });
                      $("#panel2").click(function(){
                         $("#row3").show();
                         $("#row2").hide();
                         $("#row4").hide();

                     });
                      $("#panel3").click(function(){
                         $("#row4").show();
                         $("#row3").hide();
                         $("#row2").hide();

                     });

// &amp;lt;![CDATA[
// &amp;lt;![CDATA[
//
// LIBRARY REQUIREMENTS
//
// In the require function, we include the necessary libraries and modules for
// the HTML dashboard. Then, we pass variable names for these libraries and
// modules as function parameters, in order.
//
// When you add libraries or modules, remember to retain this mapping order
// between the library or module and its function parameter. You can do this by
// adding to the end of these lists, as shown in the commented examples below.

require([
    "splunkjs/mvc",
    "splunkjs/mvc/utils",
    "splunkjs/mvc/tokenutils",
    "underscore",
    "jquery",
    "splunkjs/mvc/simplexml",
    "splunkjs/mvc/layoutview",
    "splunkjs/mvc/simplexml/dashboardview",
    "splunkjs/mvc/simplexml/dashboard/panelref",
    "splunkjs/mvc/simplexml/element/chart",
    "splunkjs/mvc/simplexml/element/event",
    "splunkjs/mvc/simplexml/element/html",
    "splunkjs/mvc/simplexml/element/list",
    "splunkjs/mvc/simplexml/element/map",
    "splunkjs/mvc/simplexml/element/single",
    "splunkjs/mvc/simplexml/element/table",
    "splunkjs/mvc/simplexml/element/visualization",
    "splunkjs/mvc/simpleform/formutils",
    "splunkjs/mvc/simplexml/eventhandler",
    "splunkjs/mvc/simplexml/searcheventhandler",
    "splunkjs/mvc/simpleform/input/dropdown",
    "splunkjs/mvc/simpleform/input/radiogroup",
    "splunkjs/mvc/simpleform/input/linklist",
    "splunkjs/mvc/simpleform/input/multiselect",
    "splunkjs/mvc/simpleform/input/checkboxgroup",
    "splunkjs/mvc/simpleform/input/text",
    "splunkjs/mvc/simpleform/input/timerange",
    "splunkjs/mvc/simpleform/input/submit",
    "splunkjs/mvc/searchmanager",
    "splunkjs/mvc/savedsearchmanager",
    "splunkjs/mvc/postprocessmanager",
    "splunkjs/mvc/simplexml/urltokenmodel"
    // Add comma-separated libraries and modules manually here, for example:
    // ..."splunkjs/mvc/simplexml/urltokenmodel",
    // "splunkjs/mvc/tokenforwarder"
    ],
    function(
        mvc,
        utils,
        TokenUtils,
        _,
        $,
        DashboardController,
        LayoutView,
        Dashboard,
        PanelRef,
        ChartElement,
        EventElement,
        HtmlElement,
        ListElement,
        MapElement,
        SingleElement,
        TableElement,
        VisualizationElement,
        FormUtils,
        EventHandler,
        SearchEventHandler,
        DropdownInput,
        RadioGroupInput,
        LinkListInput,
        MultiSelectInput,
        CheckboxGroupInput,
        TextInput,
        TimeRangeInput,
        SubmitButton,
        SearchManager,
        SavedSearchManager,
        PostProcessManager,
        UrlTokenModel
        // Add comma-separated parameter names here, for example:
        // ...UrlTokenModel,
        // TokenForwarder
        ) {

        var pageLoading = true;

        //
        // TOKENS
        //

        // Create token namespaces
        var urlTokenModel = new UrlTokenModel();
        mvc.Components.registerInstance('url', urlTokenModel);
        var defaultTokenModel = mvc.Components.getInstance('default', {create: true});
        var submittedTokenModel = mvc.Components.getInstance('submitted', {create: true});

        urlTokenModel.on('url:navigate', function() {
            defaultTokenModel.set(urlTokenModel.toJSON());
            if (!_.isEmpty(urlTokenModel.toJSON()) &amp;amp;&amp;amp; !_.all(urlTokenModel.toJSON(), _.isUndefined)) {
                submitTokens();
            } else {
                submittedTokenModel.clear();
            }
        });

        // Initialize tokens
        defaultTokenModel.set(urlTokenModel.toJSON());

        function submitTokens() {
            // Copy the contents of the defaultTokenModel to the submittedTokenModel and urlTokenModel
            FormUtils.submitForm({ replaceState: pageLoading });
        }

        function setToken(name, value) {
            defaultTokenModel.set(name, value);
            submittedTokenModel.set(name, value);
        }

        function unsetToken(name) {
            defaultTokenModel.unset(name);
            submittedTokenModel.unset(name);
        }

        //
        // SEARCH MANAGERS
        //

        //
        // SPLUNK LAYOUT
        //

        $('header').remove();
        new LayoutView({"hideAppBar": false, "hideChrome": false, "hideSplunkBar": false})
            .render()
            .getContainerElement()
            .appendChild($('.dashboard-body')[0]);
        //
        // DASHBOARD EDITOR
        //

        new Dashboard({
            id: 'dashboard',
            el: $('.dashboard-body'),
            showTitle: true,
            editable: true
        }, {tokens: true}).render();
        //
        // VIEWS: VISUALIZATION ELEMENTS
        //

        var element1 = new HtmlElement({
            "id": "element1",
            "useTokens": true,
            "el": $('#element1')
        }, {tokens: true, tokenNamespace: "submitted"}).render();

        DashboardController.addReadyDep(element1.contentLoaded());

        var element2 = new HtmlElement({
            "id": "element2",
            "useTokens": true,
            "el": $('#element2')
        }, {tokens: true, tokenNamespace: "submitted"}).render();

        DashboardController.addReadyDep(element2.contentLoaded());

        var element3 = new HtmlElement({
            "id": "element3",
            "useTokens": true,
            "el": $('#element3')
        }, {tokens: true, tokenNamespace: "submitted"}).render();

        DashboardController.addReadyDep(element3.contentLoaded());

        var element4 = new HtmlElement({
            "id": "element4",
            "useTokens": true,
            "el": $('#element4')
        }, {tokens: true, tokenNamespace: "submitted"}).render();

        DashboardController.addReadyDep(element4.contentLoaded());

        var element5 = new HtmlElement({
            "id": "element5",
            "useTokens": true,
            "el": $('#element5')
        }, {tokens: true, tokenNamespace: "submitted"}).render();

        DashboardController.addReadyDep(element5.contentLoaded());

        var element6 = new HtmlElement({
            "id": "element6",
            "useTokens": true,
            "el": $('#element6')
        }, {tokens: true, tokenNamespace: "submitted"}).render();

        DashboardController.addReadyDep(element6.contentLoaded());

        // Initialize time tokens to default
        if (!defaultTokenModel.has('earliest') &amp;amp;&amp;amp; !defaultTokenModel.has('latest')) {
            defaultTokenModel.set({ earliest: '0', latest: '' });
        }
       submitTokens();

        //
        // DASHBOARD READY
        //

        DashboardController.ready();
        pageLoading = false;
    }
);
// ]]&amp;gt;
&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Jul 2019 09:43:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383505#M25147</guid>
      <dc:creator>jitendragupta</dc:creator>
      <dc:date>2019-07-15T09:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383506#M25148</link>
      <description>&lt;P&gt;@jitendragupta - when I copy the above code in dashboard, it gives following error :&lt;/P&gt;

&lt;P&gt;Error parsing XML on line 376: Premature end of data in tag html line 2&lt;/P&gt;

&lt;P&gt;Please suggest how to resolve this ?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 05:31:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383506#M25148</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-16T05:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383507#M25149</link>
      <description>&lt;P&gt;From setting option, convert your dashboard to HTML and then copy the code.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://drive.google.com/open?id=19_AwNlwm78FNmqePtdx3rMRmdCb2jUmm"&gt;link text&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 05:38:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383507#M25149</guid>
      <dc:creator>jitendragupta</dc:creator>
      <dc:date>2019-07-16T05:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383508#M25150</link>
      <description>&lt;P&gt;Sure. i will do that. Can you please explain, what all changes you have done after converting the XML to HTML page ? As shown above, when I click on each panel, it should display 2 rows.... so  I want to understand the changes you have done ? Please advise.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 10:54:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383508#M25150</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-16T10:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383509#M25151</link>
      <description>&lt;P&gt;@jitendragupta - Thanks. I was able to do the show and hide properly now. Can we embed this html dashboard in a XML dashboard. I mean I want to show it in a app itself where other XML dashboards are visible ? How can I do that ?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 04:40:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383509#M25151</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-17T04:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383510#M25152</link>
      <description>&lt;P&gt;@jitendragupta - I have accepted your answer, but can you please reply on my previous comments wherein I have asked whether we can add that HTML dashboard to XML dashboard ? &lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 07:10:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383510#M25152</guid>
      <dc:creator>pgadhari</dc:creator>
      <dc:date>2019-07-18T07:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown from panel having image to other panel having images ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383511#M25153</link>
      <description>&lt;P&gt;Hi @pgadhari. Your requirements can be accomplished in XML by using dropdown, multi-select etc. options But for click action, I have to see this. I'll check and reply to you.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 08:28:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-from-panel-having-image-to-other-panel-having/m-p/383511#M25153</guid>
      <dc:creator>jitendragupta</dc:creator>
      <dc:date>2019-07-18T08:28:43Z</dc:date>
    </item>
  </channel>
</rss>

