<?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: Search drilldown - limited clickability in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31419#M1313</link>
    <description>&lt;P&gt;Well if you want to keep using just the core splunk modules,   what I recommend is &lt;/P&gt;

&lt;P&gt;1) change the "drilldown" param of your table from "all" to "row".   This will make the entire row highlight instead of the given cell.    This will also make the click.value be the first row of the table, no matter what.   &lt;/P&gt;

&lt;P&gt;2) You then of course have to reorder the fields with your table command, such that the LEASE IP field is indeed the first column. &lt;/P&gt;

&lt;P&gt;If you want to eliminate the need to re-order your fields then you could start using Sideview Utils in your views,  because Sideview Utils patches the SimpleResultsTable module so as to output other keys like $click.fields.Lease IP$ so you can use more than just the first column value.   You'd also get some side bonuses, like you wouldn't need to use ConvertToIntention anymore.   &lt;/P&gt;

&lt;P&gt;&lt;A href="http://sideviewapps.com/apps/sideview-utils/"&gt;http://sideviewapps.com/apps/sideview-utils/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Aug 2012 19:47:08 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2012-08-10T19:47:08Z</dc:date>
    <item>
      <title>Search drilldown - limited clickability</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31418#M1312</link>
      <description>&lt;P&gt;we use 'HiddenSearch' with 'ConvertToIntention' to display results from the 2nd search in the same view.&lt;/P&gt;

&lt;P&gt;How can we may only the "Lease IP" cell clickable but not other columns?&lt;/P&gt;

&lt;P&gt;Below is the view:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;
&lt;VIEW stylesheet="custom.css" template="dashboard.html"&gt;
      &lt;MODULE layoutpanel="panel_row1_col1" name="HiddenSearch" autorun="True"&gt;
        &lt;OBJECT&gt;&lt;PARAM name="search" /&gt;sourcetype=ib:dhcp:lease_history index=ib_dhcp_lease_history | rename host as "Member", ACTION as "Action", LEASE_IP as "Lease IP" | table _time, Member, Action, "Lease IP"
    
        &lt;MODULE name="EnablePreview"&gt;
          &lt;PARAM name="enable" /&gt;true
          &lt;PARAM name="display" /&gt;false
          &lt;MODULE name="Paginator"&gt;
            &lt;PARAM name="entityName" /&gt;results
            &lt;MODULE name="SimpleResultsTable"&gt;
            &lt;PARAM name="drilldown" /&gt;all
            
            &lt;MODULE name="HiddenSearch"&gt;
                      &lt;PARAM name="search" /&gt;sourcetype=ib:dhcp:lease_history index=ib_dhcp_lease_history | rename host as "Member", ACTION as "Action", LEASE_IP as "Lease IP" | table _time, Member, Action, "Lease IP"
    

&lt;MODULE name="ConvertToIntention"&gt;
                        &lt;PARAM name="intention" /&gt;
                          &lt;PARAM name="name" /&gt;addterm
                          &lt;PARAM name="arg" /&gt;
                            &lt;PARAM name="Lease IP" /&gt;$click.value2$
                          
                         


                &lt;MODULE name="SimpleResultsHeader"&gt;
                  &lt;PARAM name="entityName" /&gt;results
                  &lt;PARAM name="headerFormat" /&gt;
                DHCP Lease History for LEASE IP=$click.value2$
                  
                &lt;/MODULE&gt; 

&lt;MODULE name="SimpleResultsTable"&gt;&lt;/MODULE&gt;
                      &lt;/MODULE&gt; 
            &lt;/MODULE&gt; 
        &lt;/MODULE&gt; 

&lt;/MODULE&gt; 
          &lt;MODULE name="JobProgressIndicator"&gt;&lt;/MODULE&gt;
          &lt;MODULE name="HiddenPostProcess"&gt;
            &lt;PARAM name="search" /&gt;addinfo | eval TUPDATE=strftime(info_search_time, "%Y-%m-%d %H:%M:%S %Z")
            &lt;MODULE name="SingleValue"&gt;
              &lt;PARAM name="field" /&gt;TUPDATE
              &lt;PARAM name="beforeLabel" /&gt;Last Updated:
            &lt;/MODULE&gt;
          &lt;/MODULE&gt;
        &lt;/MODULE&gt;
      &lt;/OBJECT&gt;&lt;/MODULE&gt;
    &lt;/VIEW&gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks!&lt;/P&gt;

&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2012 10:19:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31418#M1312</guid>
      <dc:creator>mhaurosh</dc:creator>
      <dc:date>2012-08-10T10:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Search drilldown - limited clickability</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31419#M1313</link>
      <description>&lt;P&gt;Well if you want to keep using just the core splunk modules,   what I recommend is &lt;/P&gt;

&lt;P&gt;1) change the "drilldown" param of your table from "all" to "row".   This will make the entire row highlight instead of the given cell.    This will also make the click.value be the first row of the table, no matter what.   &lt;/P&gt;

&lt;P&gt;2) You then of course have to reorder the fields with your table command, such that the LEASE IP field is indeed the first column. &lt;/P&gt;

&lt;P&gt;If you want to eliminate the need to re-order your fields then you could start using Sideview Utils in your views,  because Sideview Utils patches the SimpleResultsTable module so as to output other keys like $click.fields.Lease IP$ so you can use more than just the first column value.   You'd also get some side bonuses, like you wouldn't need to use ConvertToIntention anymore.   &lt;/P&gt;

&lt;P&gt;&lt;A href="http://sideviewapps.com/apps/sideview-utils/"&gt;http://sideviewapps.com/apps/sideview-utils/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2012 19:47:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31419#M1313</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-08-10T19:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Search drilldown - limited clickability</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31420#M1314</link>
      <description>&lt;P&gt;Sideview Utils is exactly what was needed.&lt;BR /&gt;
Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2012 14:43:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Search-drilldown-limited-clickability/m-p/31420#M1314</guid>
      <dc:creator>mhaurosh</dc:creator>
      <dc:date>2012-08-13T14:43:28Z</dc:date>
    </item>
  </channel>
</rss>

