Hi Splunkers,
I would feel great if somebody help me to display the table results with even row in one color and
odd row in one color using simple results table module.
The approach suggested by jonuwz that uses the :nth-child
CSS selector will work on newer browsers just fine. If you want a simple solution that will work even on older browsers though, here's an extra option.
Download and install the latest Sideview Utils and use the sideview Table
module.
Then add some search language, either on the end of your base search or using a PostProcess module:
If you tacked on some search language like so:
| streamstats count | eval evenOrOdd=if(isint(count/2),"even","odd")
That will give each row a field called evenOrOdd, that will be either "even" or "odd". Then you can use the Table module's rowClass
param to specify that this field should be used as the classname. Additionally we'll use the hiddenFields
param to specify that the evenOrOdd field should not actually appear in the rendered table.
<module name="Table">
<param name="rowClass">$row.fields.evenOrOdd$</param>
<param name="hiddenFields">evenOrOdd</param>
Last but not least, you would just add this simple custom CSS to specify the two colors:
.Table tr.even td {
background-color:#eeeeee;
}
.Table tr.odd td {
background-color:#cccccc;
}
There is a cool app on Splunk Base called rowcolorizer. This should do what you want and more.
Hope this helps.
I downvoted this post because this is a dead link.
You don't really need application.js ( if you're using a fairly recent browser )
Just put this in application.css - you'll need to restart unless application.js already exists :
tr:nth-child(2n) {
background: none repeat scroll 0% 0% #000000;
}
tr:nth-child(2n) td {
color: #DDDDDD;
}
This worked perfectly! Thank you so much!