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
75
Hide Bands and Columns in the differents levels of WinTree
posted
Hello 

I am new to UltraWinTree and I have some questions about it !

I work with WinForms NetAdvantage 2006 Vol 2 CLR 2.0

In a 3-level tree just loaded from a DataSet (3 Tables with 2 hierarchical relationships between them),
1) Is it possible to hide the bands of levels 1 and 2, and leave the band for the lower level 3 ?
2) Can I hide certain columns of bands of levels 2 and 3, as can be done with the main node (myTree.Columnsettings.ColumnSets ( "myBand"). Columns ( "myCol"). Visible = False) ?
3) where can I found documentations to start with UltraWinTree ?
Thanks for your help !
Gus
Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    1) No, you can't hide ancestors and still have the leaf nodes show up. You can, however, assign the table that represents the "level 3" data directly to the DataSource property. For example, in the Northwind Customers->Orders->OrderDetails example, instead of assigning the DataSet to the DataSource property and "Customers" to the DataMember, you would just assign the OrderDetails table to the DataSource property.

    2) I'm not sure I follow this; you can hide columns on any level, so the answer to this question if I understood it is yes, you just set the Visible property for the column in that band.

    3) Right here.

Children