Splunk Search

Non Clickable column in drill down table

pero1234
Path Finder

How to set non clickable columns audittrail, linux_audit and scheduler in drill down table like for column OTHER in picture?

alt text

Tags (2)
0 Karma
1 Solution

zpavic
Path Finder

Simple, in $SPLUNK_HOME/etc/apps/appname/appserver/static/application.js add:

if ((Splunk.util.getCurrentView() == "target_dashboard_name") && Splunk.Module.SimpleResultsTable) {
  Splunk.Module.SimpleResultsTable = $.klass(Splunk.Module.SimpleResultsTable, {
    onResultsRendered: function($super) {
      var retVal = $super();
      this.myNonClickableColumns();
      return retVal;
      },

      myNonClickableColumns: function() 
      {
        $('table.simpleResultsTable td[field="target_column1"]').removeClass('d')
        $('table.simpleResultsTable td[field="target_column2"]').removeClass('d')
        $('table.simpleResultsTable td[field="target_column3"]').removeClass('d')        
      },
  });
}

Where:

  • target_dashboard_name is your dashboard with a table
  • target_column1,2,3 will be your non-clickable column in a table

Happy jQuering! 🙂

View solution in original post

zpavic
Path Finder

Simple, in $SPLUNK_HOME/etc/apps/appname/appserver/static/application.js add:

if ((Splunk.util.getCurrentView() == "target_dashboard_name") && Splunk.Module.SimpleResultsTable) {
  Splunk.Module.SimpleResultsTable = $.klass(Splunk.Module.SimpleResultsTable, {
    onResultsRendered: function($super) {
      var retVal = $super();
      this.myNonClickableColumns();
      return retVal;
      },

      myNonClickableColumns: function() 
      {
        $('table.simpleResultsTable td[field="target_column1"]').removeClass('d')
        $('table.simpleResultsTable td[field="target_column2"]').removeClass('d')
        $('table.simpleResultsTable td[field="target_column3"]').removeClass('d')        
      },
  });
}

Where:

  • target_dashboard_name is your dashboard with a table
  • target_column1,2,3 will be your non-clickable column in a table

Happy jQuering! 🙂

blee_i365
Explorer

I need this feature too. When will Splunk implement this? Alternatively I want to be able to map $click.value$ to any column I want regardless of which column of the row the user clicked on.

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...