Hi, I've been working with Telerik controls for about 6 months.
I am having an issue where I have a RadGridView with a GridViewComboBoxColumn. The GridViewComboBoxColumn is populated with a list of companies and the RadGridView is populated with a list of employees.
If an employee has just been created in the system, they have default "N/A" company assigned to them until it is assigned to them using the RadGridView employees screen I am creating. So I can have a RadGridView with 500 rows of employees and each has an "N/A" Company assigned to them.
The issue I am having is, when I am editing the employees in the RadGridView with the GridViewComboBoxColumn, when I select a company for one employee, ALL the other rows that have "N/A" company assigned to them change to that combo box selection as well.
The above code shows that COMP is a company object that belongs to the EMPLOYEE Object. The field name is the Id property of the Company. "_job" is just a class that Populates and IList<T> of objects from the database and returns them to the form.
So if the employee had a default "N/A" company assigned to them the COMP.Id value would be 111. So all new employees without a company, will actually have a default company assigned to them and that will be company Id 111, and CompanyName of "N/A".
I am attaching two screen shots of the grid which I hope will help explain the problem a little better. This is kind of a difficult question to explain.
Thanks.