Hi All ,
I have a Rad Grid which has the Rad Edit Functionality. When I am clicking on the Edit. It gets the Id and should checked the list box items (List box is an ascx file)as per the id . It is going through the process and and making the ckeckbox items checked in the Code but not showing up checked. I would really appreciate, if someone has the solution or sugesstions for this.
Here is the code that I am using ;-
I have a Rad Grid which has the Rad Edit Functionality. When I am clicking on the Edit. It gets the Id and should checked the list box items (List box is an ascx file)as per the id . It is going through the process and and making the ckeckbox items checked in the Code but not showing up checked. I would really appreciate, if someone has the solution or sugesstions for this.
Here is the code that I am using ;-
For Each grdItem As Telerik.Web.UI.GridItem In GridAssignmentRelocationAssistance.Items
For Each selectedFilesItem In selectedFiles
If selectedFilesItem = GridAssignmentRelocationAssistance.MasterTableView.DataKeyValues(grdItem.ItemIndex)
(GridAssignmentRelocationAssistance.MasterTableView.DataKeyNames(2)).ToString() Then
Dim selectBox As CheckBox = grdItem.FindControl("chkRelocationAssistanceFiles")
selectBox.Checked =
True
End If
Next
Next
Thanks,
Kapil