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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...