How to create a row border in an eXcell?

This is a (working) part of my eXcell:

this.setValue=function(val){ this.setCValue(val); if (val=="Sat") this.cell.style.backgroundColor="#b0d6a5";

The problem is that changing the background of this cell isn’t enough, i would like to have a border around the whole row.

Is this possible please?

thank you!!

any idea?

tx

this.cell.style.color = “red”;

SOLVED!

not solved ofc…
still a border issue :frowning:

You should try CSS.
For example:

<style> div.gridbox_dhx_skyblue table.obj tr td { border-top-width: 1px; border-bottom-width:1px; } </style>