Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey I have a telerik grid here and I want to loop through the the grid and access the cells and do something based on a condition, any help is very apreciated, here's what I have I think its just something small needs to be changed.
VB
If Convert.ToBoolean(dataItem(RadGrid1.Columns(ciDELETED_INDEX)).Text) Then
    For Each cell As TableCell In RadGrid1.Items
        If cell.Text <> gs_WEB_SPACE Then
            cell.Font.Strikeout = True
        End If
    Next
End If

Thanks in advance
Posted
Updated 8-Sep-11 23:47pm
v2
Comments
Prerak Patel 9-Sep-11 5:47am    
Use code block for code segments.

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900