I have a Radgrid with few columns. In functiongv_OnItemDataBound
I want to iterate over every cell and change text style to bold.
I know how to do it when I know the unique name of column:
GridDataItem dataBoundItem = e.Item as GridDataItem;
TableCell tc = dataBoundItem["_Unique_Name"];
tc.Font.Bold = true;
But I'd like to just change font style for whole row without really having to access each cell by name. Is it possible? PS: I do this change only for certain rows so I don't want to change it to bold in aspx file.