AD
Administrator
Syncfusion Team
August 8, 2003 02:19 PM UTC
The e.ColIndex == -1 sets the rowstyle for the e.RowIndex row. This rowstyle does not affect the row headers (column 0) as you noted. So, to catch the row headers in addition to the rowstyle, you could look for e.ColIndex <= 0 instead strictly equal -1.
AK
Andy Kay
August 8, 2003 03:45 PM UTC
That did the trick. Thanks again.