Dashboards & Visualizations

Cell Highlighting with cell dependency

VeEn
Explorer

Hey folks,

table cell highlighting with javascript and css, as explained in the dashboard examples, works pretty fine.
But I am trying to build a highlighting for cell values, depending on a second column.

Example:
       test1   test2
row1     1       1   
row2     0       1      

I want to highlight all cells, where test2 has the same value as test1.
I've tried a lot of if loops and none of it seemed to work.
Has anyone found a way?

thanks in advance!

Tags (2)
0 Karma

paramagurukarth
Builder

inside your application.js for your view Splunk.util.getCurrentView() (Splunk.Module.SimpleResultsTable) {
Splunk.Module.SimpleResultsTable = $.klass(Splunk.Module.SimpleResultsTable, {

onResultsRendered: function() {
container.find("tr").each(function(){
if(jQuery(this).childrens[1].innerHTML == jQuery(this).childrens[2].innerHTML )
{
jQuery(this).addClass("highlight")
}else{
jQuery(this).addClass("normal")
}

            });
    }
}

correct some sintax error in this code

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 ...