Hi,
I am currently having a few problems with nested RadGrids. I have created a custom class called "Project" which has the following properties:
I then retrieved all Projects from a database, and stored them within a List<Project> object. I then bound my RadGrid to this list. This displays the grid in the following way:
ProjectID ProjectName Status
4304e5b6-6264-df11-8942-00155d031a14 Test 1 In Development
I don't want to show the ProjectId column from the grid. I cannot remove the ProjectId property from the Project class because I need to set this value so I can later on retrieve all "Tasks" belonging to the Project. Is there any way I can remove the column from the grid?
Thanks,
Roshan
I am currently having a few problems with nested RadGrids. I have created a custom class called "Project" which has the following properties:
- ProjectId (Guid)
- ProjectName (string)
- Status (string)
I then retrieved all Projects from a database, and stored them within a List<Project> object. I then bound my RadGrid to this list. This displays the grid in the following way:
ProjectID ProjectName Status
4304e5b6-6264-df11-8942-00155d031a14 Test 1 In Development
I don't want to show the ProjectId column from the grid. I cannot remove the ProjectId property from the Project class because I need to set this value so I can later on retrieve all "Tasks" belonging to the Project. Is there any way I can remove the column from the grid?
Thanks,
Roshan