Splunk Search

How to find the location of a cell in a row

Marcovd
Explorer

How can I find the location of a cell in row?

I'm using javascript like:

var CustomRangeRenderer = TableView.BaseCellRenderer.extend({
    canRender: function(cell) {
        return true;
    },
    render: function($td, cell) {

I want to determine whether the cell I'm working on is the first cell (column) of a row.

I know that I can do cell.field and cell.value but what options are there anymore to ask to a cell?

Tags (2)
0 Karma
1 Solution

vganjare
Builder

There is not direct way of achieving this. But, you can try a trick. In the search, identify the column which is First column. Mark this field as first column (in search). e.g.
[base search] | fields col1, col2, col3, col4 | eval col1="FIRST_COLUMN_".col1

Now, in the js, by looking at the cell.value, you can identify if its first column or not and take necessary actions if required. Once identified, remove the token FIRST_COLUMN_ from the cell.value, so that user doesn't see this token in result.

Thanks!!

View solution in original post

vganjare
Builder

There is not direct way of achieving this. But, you can try a trick. In the search, identify the column which is First column. Mark this field as first column (in search). e.g.
[base search] | fields col1, col2, col3, col4 | eval col1="FIRST_COLUMN_".col1

Now, in the js, by looking at the cell.value, you can identify if its first column or not and take necessary actions if required. Once identified, remove the token FIRST_COLUMN_ from the cell.value, so that user doesn't see this token in result.

Thanks!!

Marcovd
Explorer

Easy and simple solution.
Thanks

0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

  Ready to master Kubernetes and cloud monitoring like the pros?Join Splunk’s Growth Engineering team for an ...

Wrapping Up Cybersecurity Awareness Month

October might be wrapping up, but for Splunk Education, cybersecurity awareness never goes out of season. ...

🌟 From Audit Chaos to Clarity: Welcoming Audit Trail v2

🗣 You Spoke, We Listened  Audit Trail v2 wasn’t written in isolation—it was shaped by your voices.  In ...