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
220
third Level of Objects not visible in UltraTree
posted

Hi all,

My UltraTree don't show the third Level of Object Hierarchie. The Object Tree is build by EntityFramework. Each Object has two different ListMembers of Objects. One is recursive declared as follows:

public partial class ECU_WorkpiecesGroups : global::System.Data.Objects.DataClasses.EntityObject
    {

        public List <ECU_WorkpiecesGroups> ChildWorkpiecesGroupList
        {

            get
            {
                LoadChildWorkpiecesGroups();
                return ChildWorkpiecesGroups.ToList();

            }
           //  ChildWorkpiecesGroups is a EntityCollection of ECU_WorkpiecesGroups

       }

}

While Debugging through the Object the List is fullfilled with the right Objects; While showing the Objects with UltraTree the Tree is broken on the third Level. What could be my Problem?

Greatings: Rudy

Parents
  • 469350
    Offline posted

    Hi,

    There's not much information here to on.

    What version of the tree are you using?

    Have you tried binding some other control to the same data source to see if this is actually a problem with the tree or the data source itself? Try binding to a WinGrid and see if it shows all three levels, just as a test.

     

Reply Children