Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
430
UltraWinGrid now supports IEnumerable<T> as child band?
posted

We recently converted our application from Infragistics Winform version 2010.3 to 2012.1.  We are noticing that one some of our grids there are now more than one band where there wasnt before.  We are binding to a List objects.  But our object has a property that is an IEnumerable of another object.  For example:

public class Blah

{

      public int Id {get; private set;}

      public IEnumerable<BlahChild> Children

      {

            get { return Ienumerable;}

      } 

}

Before (version 2010.3), the grid bound to a list of objects such as this does show a child band.  but with the new version it seems they do show.  I was just curious if this was a feature that was added at some point that i missed in release notes?  Thanks