Categories | Question details Back To List | ||
CSS for tab out Hi Am using a normal grid with setStyle as follows: mygrid.setStyle("","","background-color:#ffffff;","background-color:#ffffff"); When i do a tabout from one cell to another,the prev cell's text becomes white in color.How do i modify this color? Thanks Answer posted by Support on Jan 16, 2009 02:53 You can define color of text in grid, by adding next rule <style> div.gridbox table.obj td { color:black; } </style> |