Hi
I need following functionality:
When user press a button I iterate all childrows checking the values in cells and if those values are not ok i pop out a Message.box warning the user. Then I want to enable him to change the incorrect cell value, therefore I need to make that cell editable. I use following code:
Me.RadGridView.Rows(i).ViewTemplate.AllowEditRow = True
Me.RadGridView.Rows(i).ViewTemplate.Rows(0).Cells(0).BeginEdit()
Me.RadGridView.PerformLayout()
Me.RadGridView.BeginEdit()
The cell stays readonly.
Thank you in advance!
I need following functionality:
When user press a button I iterate all childrows checking the values in cells and if those values are not ok i pop out a Message.box warning the user. Then I want to enable him to change the incorrect cell value, therefore I need to make that cell editable. I use following code:
Me.RadGridView.Rows(i).ViewTemplate.AllowEditRow = True
Me.RadGridView.Rows(i).ViewTemplate.Rows(0).Cells(0).BeginEdit()
Me.RadGridView.PerformLayout()
Me.RadGridView.BeginEdit()
The cell stays readonly.
Thank you in advance!