Hello,
I bound data to Grid using DataSource property.
Then I call Grid.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode);
but the problem is that I can not edit the cell value, its read only.
Thanks,
Yossy
I find the problem but I still do not know to solve it.
the problem is that my DataSource is a LINQ sentence like this:
orderby employee.LastName
select new { employee.LastName, employee.FirstName };
If I change to this code:
select employee;
Evrything is OK. But when I want to get only several fields I have the problem.
In fact I need to know how to change the DataSource characteristic so it will allowed updaing data even I only took several fields.