I fill data in GridView using this Linq code:
var p = dbZ.ZleceniaLinies |
.Select(c => new |
{ |
ID = c.idLinii, |
Typ = c.Typ |
}); |
radDgvPozyc.DataSource = p; |
radDgvPozyc.DataSource = p;
It works very fine and I love Telerik GridView but. Line for adding new record is (I see it) on my form but I can't put data there. And I can't modify any cells because they not editable :(
I checked and RadGridView control is enabled and ReadOnly properties of the cell, column, and control are all set to false.
How set it do Add, Modify and Delete from this DataGrid?