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
1833
Recursive Dataset Dinding - Extra Nodes
posted


I have a self referencing dataset that is used to create a tree structure. The dataset has 2 tables 1 for projects (self referencing) and the other for tasks. The task table has a foreign key to the projects table.

I have bound this to the UltraWinTree and it does correctly show the tree structure. However, it currently adds in a node that represents the band as follows:-

-My Root level project
    -c03_GetAllProjects_c03_GetAllProjects --> (table 1)
        -My sub-project
            -c03_GetAllProjects_c03_GetAllProjects
            -c03_GetAllProjects_c03_GetAlllnkProjectTask_Min
            -Task1
    -c03_GetAllProjects_c03_GetAlllnkProjectTask_Min --> (table 2)
        -Task1
        -Task2
        -Task3

The issue with this is that I don't want a node to be displayed for each band this is unnecessary. I want it to look more like the following:-

-My Root level project
    -My sub-project
        -Task1
    -Task1
    -Task2
    -Task3

How can I do this? If this is not possible how do I change the text of these additional nodes?