Hi, I have a RadGridView with enabled editing with a CheckBoxColumn (readonly = false). When I click a checkbox in any row, it doesnt change its state. What could be the problem? Thanks for help.
3 Answers, 1 is accepted
0
Stefan
Telerik team
answered on 13 Aug 2013, 06:03 AM
Hello Marc,
Thank you for writing.
It would be hard to determine what is preventing you from changing the check box value without looking at your project. I would suggest looking for the ReadOnly state of the column, of the grid, checking if you have some validation logic in the validating or the ValueChaning events.
If these does not help, please get back to us with a sample allowing us to reproduce the issue and we will investigate the reasons causing it.
Regards,
Stefan
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely. Sign up for Free application insights >>
Hi Marc,
Thank you for providing your project in the support thread you have opened. You are not able to edit the contents of a row as you have set the AllowEditRow property to false at design time. Simply it back to true and you will be able to edit rows in the grid:
RadGridView1.AllowEditRow = True
I hope this helps.
Regards,
Stefan
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely. Sign up for Free application insights >>