Is it possible to bind an RadSheduler using SubObjects like RadGrid?
http://www.telerik.com/help/aspnet-ajax/grdbindingtosubobjects.html
Example:
http://www.telerik.com/help/aspnet-ajax/grdbindingtosubobjects.html
Example:
| public class MyData |
| { |
| public Meeting Information { get; set; } |
| public Resource Resource { get; set; } |
| } |
I'm trying to bind a list of MyData in my RadScheduler and setting:
| agenda.DataKeyField = "Information.Id"; |
| agenda.DataStartField = "Information.StartDate"; |
Is it possible? I'm getting this error:
DataBinding: 'MyData' does not contain a property with the name 'Id'.
It seens that it is looking for the property Id in MyData Object, not in SubObject MyData.Information.
Tku