Splunk Search

Highlight a row or change the Background color of the row when an element on that is clicked.

sdhawanx
Path Finder

I have a table in my Dashboard which displays a large amount of data and has drilldowns which activates other table results. I want to either to highlight the selected row or change the background color only using simple xml as I don't have the access to change or add the js file. or if there is a way to add .js code in the simple xml code itself. any leads would be helpful.

Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Add a hidden panel with some CSS in. Give your panel with your table with the drilldown an id.

    <panel depends="$AlwaysHidden$">
      <html>
        <style>
          div[id="tablewithdrilldown"] tr[data-view$="ResultsTableRow"] td:focus
          {
            color: yellow !important;
            background-color: red !important;
          }
        </style>
      </html>
    </panel>
    <panel id="tablewithdrilldown">
      <table>
0 Karma

sdhawanx
Path Finder

This solution for some reason is not working for my dashboard panel.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Perhaps you can share your dashboard Simple XML?

0 Karma
Get Updates on the Splunk Community!

Developer Spotlight with Paul Stout

Welcome to our very first developer spotlight release series where we'll feature some awesome Splunk ...

State of Splunk Careers 2024: Maximizing Career Outcomes and the Continued Value of ...

For the past four years, Splunk has partnered with Enterprise Strategy Group to conduct a survey that gauges ...

Data-Driven Success: Splunk & Financial Services

Splunk streamlines the process of extracting insights from large volumes of data. In this fast-paced world, ...