Hi
I have an unbound radgridview and I am deleteing the row with an ID value of 0 the code runs but the row is still visible in the grid and when the radgridview is selected I get an error:
System.Data.RowNotInTableException was unhandled
Message="This row has been removed from a table and does not have any data. BeginEdit() will allow creation of new data in this row."
Source="System.Data"
For x As Integer = 0 To Me. radgridview1.Rows.Count - 1
If (Me. radgridview1.Rows(x).Cells("ID").Value) = 0 Then
Me.Packagelist.Rows.RemoveAt(x)
Exit For
End If
Next
How do I remove the row from the grid and avoid the error?
Regards
Joe
Hello,
I have a RadGridView, I need to add two controls is a single cell (i.e. Combobox and image button ).
Hi i am new to telerik and was trying telerik grid view for the first time.
can u please tell me if it is possible to add column group at design time???