Hi there,
I have just begun using telerik controls and have been very successful up to this point...with the help of your excellent support pages.
RadGrid1(RG#) posts user data (upon row selection) to the following RadComboBox(RCB) and updates the following RadGrid2(RG#) with data pertaining to that selection.
I am using asp:CheckBox to evaluate the current check box selections in RG2 to then filter the possible data elements in RG3.
Successfully, I used the RCB to alter the data elements in RG2, by changing the selection in the RCB you'll subsequently notice the possible values available in RG2. I have not been so fortunate with the CheckBox...thus far.
I try to populate RG3 in the same way as I did using the RCB, but I continually get an error stating "SelectedValue is read only", but it worked for the RCB to RG2, so I assumed it was translatable.
The first, snippet is of RCB to RG using a method FillFacility to fill RG2. The second, is how I have been trying to populate RG3 with check box selections. The check all, one, or none works fine in RG2 check box column item selection, but does not post values to RG3 or allow the attempt, because of the error.
I appreciate any and all help.
Cheers,
-Ryan
I have just begun using telerik controls and have been very successful up to this point...with the help of your excellent support pages.
RadGrid1(RG#) posts user data (upon row selection) to the following RadComboBox(RCB) and updates the following RadGrid2(RG#) with data pertaining to that selection.
I am using asp:CheckBox to evaluate the current check box selections in RG2 to then filter the possible data elements in RG3.
Successfully, I used the RCB to alter the data elements in RG2, by changing the selection in the RCB you'll subsequently notice the possible values available in RG2. I have not been so fortunate with the CheckBox...thus far.
I try to populate RG3 in the same way as I did using the RCB, but I continually get an error stating "SelectedValue is read only", but it worked for the RCB to RG2, so I assumed it was translatable.
The first, snippet is of RCB to RG using a method FillFacility to fill RG2. The second, is how I have been trying to populate RG3 with check box selections. The check all, one, or none works fine in RG2 check box column item selection, but does not post values to RG3 or allow the attempt, because of the error.
Me.rcbSite.SelectedValue = DR("SiteID") |
Me.FillFacility(Convert.ToInt32(DR("SiteID"))) |
'Here is the problem I think |
Me.RG2.SelectedValues = DR("FacilityID") |
Me.FillDepartment(Convert.ToInt32(DR("FacilityID"))) |
I appreciate any and all help.
Cheers,
-Ryan