Change color of a row, after setting column color

Hi,

I have set the color of required columns using the follwing function.
shareGrid.setColumnColor("FFFF99,FFFF99)

After that i want to set remve that yellow color from a row let say row#2.

Is there any function to set the row color to null, or any other background. so that the FFFF99 color does not appear in the second row?

You can set row or cell styles:

docs.dhtmlx.com/doku.php?id=dhtm … wtextstyle
docs.dhtmlx.com/doku.php?id=dhtm … ltextstyle

mygrid.setCellTextStyle(“row1”,0,“color:red;border:1px solid gray;”);

this is the function which is mentioned in the link provided and i m calling that at the end of my where all my grids have been loaded.

but nothing happening when the grid is rendered.

also tell me, do we mention rowid as ‘row1’ in the parameter of the function??

.also tell me, do we mention rowid as ‘row1’ in the parameter of the function??
first parameter of setCellTextStyle() method is id of the row
second parameter is zero-based column index