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
95
Problems with showing hierarchical data with different depth
posted

 Hi,

I have a hierarchical data source, with different hierarchical depth for each parent (or top node).

My problem is that the UltraWebGrid do not show all child levels.

If the first element in the data source has the highest depth, then UltraWebGrid displays the hierarchical correct.

If the first element in the data source has NOT the highest depth, then the UltraWebGrid limit the display of the following parents to the depth of the first element.

So my conclusion is that the UltraWebGrid reads the first element in the data source, to find the depth of the hierarchical structure.

Is this correct? Is there a way for me to configure UltraWebGrid to behave different?

Example

(I have a data source which is date sorted in the select, so I can control which element is the first in the structure)

Correct: If the data source has this structure, everything is displayed fine

parent_1
  childLevel_1
  childLevel_1
    childLevel_2
    childLevel_2
      childLevel_3

parent_2
  childLevel_1
  childLevel_1

Fails: If the data source has this structure, some of the child levels are not displayed

parent_1
  childLevel_1
  childLevel_1

parent_2
  childLevel_1
  childLevel_1
    childLevel_2     (these are not shown in the grid)
    childLevel_2     (these are not shown in the grid)
      childLevel_3   (these are not shown in the grid)