Hi, I'm working with a RadGrid on a web application, and I'm usin the EditFormSettings to customize the Edit Form in my grid, inside I have 2 checkboxes and I would like to get the value of that controls so then when CheckBox1 is True, the other one must be False. I used to do this with a formview typing this code:
Dim CheckBox1 As CheckBox = Ctype(FormView.FindControl("CheckBox1"), CheckBox)
but now with this RadGrid I cant get the value, hope anyone could help me
Dim CheckBox1 As CheckBox = Ctype(FormView.FindControl("CheckBox1"), CheckBox)
but now with this RadGrid I cant get the value, hope anyone could help me