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!

Index This | Why did the turkey cross the road?

November 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...