Hello guys,
The issue is fixed in our latest internal build (you can get the build from your accounts). We are about to release also (next week) our official Q1 2013. If you want you can wait for the official release.
I've attached also modified version of the application from the blog post for reference. I would like to point also that if you want to have null values (like the properties in this blog post) you should use nullable types. The correct implementation of Facet class should be:
public class Facet
{
public Facet()
{
}
/// <summary>
/// Must be a valid CLR property name
/// </summary>
public string PropertyName { get; set; }
public Type PropertyType { get; set; }
public static Facet DynamicDemo0 = new Facet
{
PropertyName = "DynamicPropZero",
PropertyType = typeof(string)
};
public static Facet DynamicDemo1 = new Facet
{
PropertyName = "DynamicPropOne",
PropertyType = typeof(double?)
};
}
Greetings,
Vlad
the Telerik team