or
For Each CheckRow In gvData.Rows
If (Not (CheckRow.Cells(5).CellElement Is Nothing)) Then
Dim CheckCell As RadCheckBoxEditorElement = TryCast(CheckRow.Cells(5).CellElement.Children(0), RadCheckBoxEditorElement)
CheckCell.UseDefaultDisabledPaint =
True
CheckCell.Enabled = False
End If
Next
How would I get the RadCheckBoxEditorElement in the current version?
Thanks Eric