Hi,
1. Is it possible to bind to a IList<object> where the items in the list are not all of the same type I.e. A heterogeneous list as opposed to a homogenous list?
2. If I bind the InputPanel to IList<MyBaseClass> it only displays the properties declared in MyBaseClass, even if all of the objects in the List are of type MySubClass.
a. Is this expected behaviour?
b. If so, is there a way I can get the InputPanel to create controls for the derived class properties, without having to convert the IList<MyBaseClass> to IList<MySubClass>?
Kind regards,
Paul