Splunk Search

How to color lines in a table by clicking a cell?

sfatnass
Contributor

Hi everybody

I want to know how I can color the all the lines in my table by clicking on a cell.
I tried this code and the message on console works fine, but the coloration doesn't and I don't understand why:

<%css>
#highlight tr.range-mine td{
color:red;
}
<%css>


<%javascript>
require([
'underscore',
'jquery',
'splunkjs/mvc',
'splunkjs/mvc/tableview',
'splunkjs/mvc/simplexml/ready!'
],function(_,$,mvc,TableView) {

    var CustomRangeRenderer = TableView.BaseCellRenderer.extend({
        canRender: function(cell){
            return _(['id']).contains(cell.field);
        },
        render: function($td,cell) {
            var value = String(cell.value); 
if(cell.field === 'id'){

$td.on('click',function(){

console.log('td',value);
$td.addClass('range-cell').addClass('range-mine');
});

}
        $td.text(value.split(";")[0]).addClass('text');

        }
    });

    mvc.Components.get('highlight').getVisualization(function(tableView){
        tableView.table.addCellRenderer(new CustomRangeRenderer());
            tableView.on('rendered',function(){
            tableView.$el.find('td.range-cell').each(function(){
            $(this).parents('tr').addClass(this.className);
             });
            });
        tableView.table.render();
    });  

});
<%javascript>

thx

1 Solution

piUek
Path Finder

The easiest way to color ALL the table cells would be to set class for all td elements on click using jquery ('td') selector.

<style>
    .red {
        color: red !important
    }
</style>

<script>
    // listen for clicks only on first column
    var CustomCellRenderer = TableView.BaseCellRenderer.extend({
        canRender: function(cellData) {
            return cellData.index === 0;
        },

        render: function($td, cellData) {
            value = cellData.value;

            $td.on('click', function() {
                    $('td').addClass('red');
                })

            $td.text(value);
        }

    });
</script>

To color only one line (parent tr) use:

        $td.on('click', function() {
                $td.parent().addClass('red');
            })

View solution in original post

piUek
Path Finder

The easiest way to color ALL the table cells would be to set class for all td elements on click using jquery ('td') selector.

<style>
    .red {
        color: red !important
    }
</style>

<script>
    // listen for clicks only on first column
    var CustomCellRenderer = TableView.BaseCellRenderer.extend({
        canRender: function(cellData) {
            return cellData.index === 0;
        },

        render: function($td, cellData) {
            value = cellData.value;

            $td.on('click', function() {
                    $('td').addClass('red');
                })

            $td.text(value);
        }

    });
</script>

To color only one line (parent tr) use:

        $td.on('click', function() {
                $td.parent().addClass('red');
            })

sfatnass
Contributor

i solved it, using function js within my html dashboard.

=>> if click on line push value in array and send array content to color function.

if click again on same line (detected by an id), splice this value from array and resend the new array content to refresh automatic the color.

^^

thx again

0 Karma

rashi83
Path Finder

How can I just border the table in dashboard panel ? I doesn't want color on click of a cell..

0 Karma

sfatnass
Contributor

no body have any idea?

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

Splunk is officially part of Cisco

Revolutionizing how our customers build resilience across their entire digital footprint.   Splunk ...

Splunk APM & RUM | Planned Maintenance March 26 - March 28, 2024

There will be planned maintenance for Splunk APM and RUM between March 26, 2024 and March 28, 2024 as ...