Here is some of my code
<Columns>
<telerik:GridBoundColumn DataField="ResourceId" DataType="System.Guid"
EmptyDataText="&nbsp;" HeaderText="ResourceId" ReadOnly="True"
SortExpression="ResourceId" UniqueName="ResourceId" Visible="false">
</telerik:GridBoundColumn>
<telerik:GridCheckBoxColumn DataField="Invited" DataType="System.Boolean"
HeaderText="Invited" ReadOnly="False" SortExpression="Invited"
UniqueName="Invited">
</telerik:GridCheckBoxColumn>
<telerik:GridBoundColumn DataField="Name" EmptyDataText="&nbsp;"
HeaderText="Name" ReadOnly="True" SortExpression="Name" UniqueName="Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Title" EmptyDataText="&nbsp;"
HeaderText="Title" ReadOnly="True" SortExpression="Title" UniqueName="Title">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Location" EmptyDataText="&nbsp;"
HeaderText="Location" ReadOnly="True" SortExpression="Location"
UniqueName="Location">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Response" DataType="System.String"
EmptyDataText="&nbsp;" HeaderText="Response" ReadOnly="True"
SortExpression="Response" UniqueName="Response">
</telerik:GridBoundColumn>
<telerik:GridCheckBoxColumn DataField="Attended" DataType="System.Boolean"
HeaderText="Attended" ReadOnly="True" SortExpression="Attended"
UniqueName="Attended">
</telerik:GridCheckBoxColumn>
</Columns>
VB code
For Each grdItem In RadGrid1.MasterTableView.Items
' to get Name value
sName = grdItem("Name").Text
'How can i get the value for Invited Grid CheckboxColumn so i can set another checkbox to read only
Next
Your help is greatly appreciated
Thanks Tony