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!

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...

From Alert to Resolution: How Splunk Observability Helps SREs Navigate Critical ...

It's 3:17 AM, and your phone buzzes with an urgent alert. Wire transfer processing times have spiked, and ...