<?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: drilldown from a hidden column in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34111#M1400</link>
    <description>&lt;P&gt;If you're using a recent version of Sideview Utils,   you can use the Table module instead of Splunk's SimpleResultsTable module. &lt;/P&gt;

&lt;P&gt;This get you a couple big benefits.   First of all, at least for you, is that it has a "hiddenFields" param, which you can use to have field values present in the data, available for drilldowns, but not actually rendered in the table columns. &lt;/P&gt;

&lt;P&gt;Secondly, you can use $row.fields.myFieldName$  and $row.fields.someOtherFieldName$ to refer to the field values in the given selected row.  &lt;/P&gt;

&lt;P&gt;Note that it's "row" instead of SimpleResultsTable's "click".  There's a good reason for this name change and it'll make more sense as you use the Table module more. You can always change it away from "row" if you like just by setting the Table module's optional "name" param.   &lt;/P&gt;

&lt;P&gt;There are several pages of documentation within the Sideview Utils app itself that will tell you all you need to know about the Table module and how to use it. &lt;/P&gt;

&lt;P&gt;1) Download the latest version of Sideview Utils (2.2.10) from the Sideview site at &lt;A href="http://sideviewapps.com/apps/sideview-utils"&gt;http://sideviewapps.com/apps/sideview-utils&lt;/A&gt;.  Note that if you think you have the app already you probably have the old version from Splunkbase (1.3.5). &lt;/P&gt;

&lt;P&gt;2) Install the app, navigate to it and then navigate to "Module Documentation &amp;gt; The Table Module" and go from there.  There are several pages and the hiddenFields stuff is pretty early on. &lt;/P&gt;</description>
    <pubDate>Fri, 04 Jan 2013 20:14:47 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2013-01-04T20:14:47Z</dc:date>
    <item>
      <title>drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34105#M1394</link>
      <description>&lt;P&gt;In a dashboard, I have a SimpleResultsTable with a drilldown that uses:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="SimpleResultsTable"&amp;gt;                                            
  &amp;lt;param name="drilldown"&amp;gt;row&amp;lt;/param&amp;gt;
  &amp;lt;module name="Redirector"&amp;gt;
         &amp;lt;param name="url"&amp;gt;next_page&amp;lt;/param&amp;gt;
         &amp;lt;param name="arg.key"&amp;gt;$click.fields.key$&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In this case "key" is a unique key that will determine the next_page's search.&lt;/P&gt;

&lt;P&gt;The problem is that I would like key to not display in the results table (just be available for the drilldown).  The value of "key" is not anything a user should ever see.&lt;/P&gt;

&lt;P&gt;Is there anyway to add that field to the table but hide the column, or anything else that will make this possible.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;-Kevin&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2011 21:32:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34105#M1394</guid>
      <dc:creator>kkalmbach</dc:creator>
      <dc:date>2011-06-23T21:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34106#M1395</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Editor's note: please see next answer down for modern, Splunk 6.x+ method of doing this&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;When drilldown is set to &lt;CODE&gt;row&lt;/CODE&gt;, the module uses the value in the first column of each row as drilldown value. So you can put the field you want to hide in the first column and then hide it using some Javascript in application.js.&lt;/P&gt;

&lt;P&gt;Example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;if(Splunk.util.getCurrentView() == "myview") {
    Splunk.Module.SimpleResultsTable = $.klass(Splunk.Module.SimpleResultsTable, {
        renderResults: function($super,data) {
            $super(data);
            $('td:nth-child(2),th:nth-child(2)', this.container).hide();
        }
    });
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Jun 2011 15:22:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34106#M1395</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2011-06-24T15:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34107#M1396</link>
      <description>&lt;P&gt;Your first sentence is technically not true if you're using Sideview Utils.  Using the $click.fields.fieldName$ syntax you can get the value for any field in the entire row. You're no longer limited to just the first field.  Conversely, within core Splunk UI, the "first column" limitation absolutely applies.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2011 20:23:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34107#M1396</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2011-06-24T20:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34108#M1397</link>
      <description>&lt;P&gt;Ah ok, I wasn't aware of this. Great enhancement btw &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jun 2011 09:42:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34108#M1397</guid>
      <dc:creator>ziegfried</dc:creator>
      <dc:date>2011-06-26T09:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34109#M1398</link>
      <description>&lt;P&gt;Hi.&lt;BR /&gt;
I have a same problem. So, I'm now apply the application.js and solve the problem. But field's name is not hide.&lt;BR /&gt;
If the table have 4 fields - first field is hidden , 4 fields name , 3 data fields ard displayed.&lt;BR /&gt;
Do you understand my question?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2011 08:18:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34109#M1398</guid>
      <dc:creator>lanying</dc:creator>
      <dc:date>2011-09-06T08:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34110#M1399</link>
      <description>&lt;P&gt;Very cool, just threw this into a couple of &lt;A href="http://splunk-base.splunk.com/apps/29008/sos-splunk-on-splunk"&gt;Splunk on Splunk&lt;/A&gt; views!&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2011 10:00:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34110#M1399</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2011-12-03T10:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34111#M1400</link>
      <description>&lt;P&gt;If you're using a recent version of Sideview Utils,   you can use the Table module instead of Splunk's SimpleResultsTable module. &lt;/P&gt;

&lt;P&gt;This get you a couple big benefits.   First of all, at least for you, is that it has a "hiddenFields" param, which you can use to have field values present in the data, available for drilldowns, but not actually rendered in the table columns. &lt;/P&gt;

&lt;P&gt;Secondly, you can use $row.fields.myFieldName$  and $row.fields.someOtherFieldName$ to refer to the field values in the given selected row.  &lt;/P&gt;

&lt;P&gt;Note that it's "row" instead of SimpleResultsTable's "click".  There's a good reason for this name change and it'll make more sense as you use the Table module more. You can always change it away from "row" if you like just by setting the Table module's optional "name" param.   &lt;/P&gt;

&lt;P&gt;There are several pages of documentation within the Sideview Utils app itself that will tell you all you need to know about the Table module and how to use it. &lt;/P&gt;

&lt;P&gt;1) Download the latest version of Sideview Utils (2.2.10) from the Sideview site at &lt;A href="http://sideviewapps.com/apps/sideview-utils"&gt;http://sideviewapps.com/apps/sideview-utils&lt;/A&gt;.  Note that if you think you have the app already you probably have the old version from Splunkbase (1.3.5). &lt;/P&gt;

&lt;P&gt;2) Install the app, navigate to it and then navigate to "Module Documentation &amp;gt; The Table Module" and go from there.  There are several pages and the hiddenFields stuff is pretty early on. &lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2013 20:14:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34111#M1400</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2013-01-04T20:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34112#M1401</link>
      <description>&lt;P&gt;If you are using Splunk 6.0+, with its redesigned UI, it is more simple to do a drilldown based on a hidden column.&lt;/P&gt;

&lt;P&gt;In the SimpleXML dashboard, specify which fields should be displayed in the table as such:&lt;/P&gt;

&lt;P&gt;Splunk 6.0-6.4.x&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="fields"&amp;gt;field1,field2,field4,count&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Splunk 6.5+&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;fields&amp;gt;field1,field2,field4,count&amp;lt;/fields&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The other fields, including &lt;CODE&gt;field3&lt;/CODE&gt; (output by the search but not listed in the option above) will still be available to the &lt;CODE&gt;drilldown&lt;/CODE&gt; as &lt;CODE&gt;$row.field3$&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Dec 2014 17:05:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34112#M1401</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2014-12-16T17:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34113#M1402</link>
      <description>&lt;P&gt;This worked great for me.  Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 20:52:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34113#M1402</guid>
      <dc:creator>cwb2</dc:creator>
      <dc:date>2016-02-04T20:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34114#M1403</link>
      <description>&lt;P&gt;As of Splunk 6.5 the option "fields" has been deprecated.&lt;/P&gt;

&lt;P&gt;So, instead now it is just:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;fields&amp;gt;field1,field2,field4,count&amp;lt;/fields&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And exactly as before &lt;CODE&gt;field3&lt;/CODE&gt; will still be available to the drilldown as &lt;CODE&gt;$row.field3$&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 10:50:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34114#M1403</guid>
      <dc:creator>Jodge</dc:creator>
      <dc:date>2016-11-22T10:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34115#M1404</link>
      <description>&lt;P&gt;Yes, thanks, just noticed that - though &lt;CODE&gt;&amp;lt;option name="fields"&amp;gt;&lt;/CODE&gt; still works, it will be flagged as deprecated by the nice new xml editor. Updated post.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 11:03:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34115#M1404</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2016-11-22T11:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34116#M1405</link>
      <description>&lt;P&gt;Is there anyway for "fields" to take a variable? I want to be able to show/hide columns from a user option.&lt;/P&gt;

&lt;P&gt;*somehow when I specify fields with "&amp;lt;" and "&amp;gt;" it gets removed from the comments. :s&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 08:51:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34116#M1405</guid>
      <dc:creator>samuelmah</dc:creator>
      <dc:date>2017-07-21T08:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34117#M1406</link>
      <description>&lt;P&gt;Hey! I was wondering if this still works, I really need to drilldown values from a hidden field and not sure how to do so&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 13:51:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34117#M1406</guid>
      <dc:creator>pamcarvalho</dc:creator>
      <dc:date>2017-10-17T13:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34118#M1407</link>
      <description>&lt;P&gt;See my answer above, and the comments beneath it.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 15:48:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34118#M1407</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2017-10-17T15:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown from a hidden column</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34119#M1408</link>
      <description>&lt;P&gt;This helped me to hide a column from a table&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 13:48:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/drilldown-from-a-hidden-column/m-p/34119#M1408</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2020-02-06T13:48:10Z</dc:date>
    </item>
  </channel>
</rss>

