Splunk Search

How to enable / disable table element drilldown through java script

rakesh_498115
Motivator

Hi All,

I was having a requirement to enable / disable table element drilldown. i mean if my SH is a Job server i would enable the drilldown option for table elment and should disable the option if its a Search head.

I have used the following code snippnet . but this not working . Can you please help me ? where am i going wrong ??

// Sample code

     var element1 = new TableElement({
             "id": "element1",          
         `"link.exportResults.visible":  "true",
            "link.inspectSearch.visible": "false",
             "link.openSearch.visible": "false",            
               "drilldown": "row",
            "rowNumbers": "true",
            "managerid": "search1",
             "el": $('#element1')
         }, {tokens: true}).render();


            if(host ="JobServer")       {
             element1.settings.set("drilldown","row");
            }
            if(host ="SearchHead")      {
             element1.settings.set("drilldown","none");
            }

Please help me !! Thanks in Advance 🙂

Tags (2)
0 Karma

piUek
Path Finder

The problem is in the host = 'JobServer' . In javascript '=' is the assignment operator. To compare You should use identity operator: '==='.
Please check http://www.c-point.com/javascript_tutorial/jsgrpComparison.htm for reference.

So your code should be:

 if (host === "JobServer") {
    element1.settings.set("drilldown", "row");
 }
 if (host === "SearchHead") {
    element1.settings.set("drilldown", "none");
 }
0 Karma

paramagurukarth
Builder

Can you please share your xml :)..

0 Karma

sfatnass
Contributor

hi rakesh did you solved your problem?

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...