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
125
Hide the grid control area for ultra Grid
posted

Hi,

I need a grouping control like the one in UltraGrid. Since I could not find any I decided to to with an empty UltraGrid with just the columns defined. It is working but I need to hide the area containing the rows and column headers.

I have attached a screen shot of what I have so far. How can I just keep the Grouping control and hide the rest.

Is there any other control/method to achieve this?

Thanks,

Abhinav

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    Hello,

     

    I strongly believe that you ned a tree. The grouping hierarchy is a kind of tree where each node might have only one child. So if you need just only to represent this hierarchy I think that you could use UltraTree.

     

    About your achievement, if you not going to use “Data Part” of the grid and just the group header, then you could resize UltraGrid’s height to be exact as the group header height. Or you could hide all column headers of the band:

     

    ultraGrid1.DisplayLayout.Bands[0].ColHeadersVisible = false;

     

    Please let me know if you have any further questions.

Children