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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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