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
175
WebListbar and WebTree
posted

We're needing to embed a WebTree into a WebListbar group but can't figure out how to do it.  I've done it before in the WinForms controls but we're rather new to the web controls and they're very different from the client controls.

 Also we can't get the Infragistics help to display in Visual Studio Help.  This has been a problem ever since we upgraded to VS 2008.

 Any help would be appreciated.

Parents
  • 7694
    posted

     Hello
    Please take a look code below:
    <iglbar:UltraWebListbar ID="UltraWebListbar1" runat="server">
            <Groups>
                <iglbar:Group Text="2">
                    <Template>
                        <ignav:UltraWebTree ID="UltraWebTree3" runat="server" DefaultImage="" HiliteClass=""
                            HoverClass="" Indentation="20">
                            <Levels>
                                <ignav:Level Index="0" />
                            </Levels>
                            <Nodes>
                                <ignav:Node Text="Root Node">
                                    <Nodes>
                                        <ignav:Node Text="Child Node">
                                        </ignav:Node>
                                    </Nodes>
                                </ignav:Node>
                                <ignav:Node Text="Root Node">
                                </ignav:Node>
                            </Nodes>
                        </ignav:UltraWebTree>
                    </Template>
                </iglbar:Group>
                <iglbar:Group Text="1">
                    <Template>
                        <ignav:UltraWebTree ID="UltraWebTree4" runat="server" DefaultImage="" HiliteClass=""
                            HoverClass="" Indentation="20">
                            <Levels>
                                <ignav:Level Index="0" />
                            </Levels>
                            <Nodes>
                                <ignav:Node Text="Root Node">
                                </ignav:Node>
                                <ignav:Node Text="Root Node">
                                    <Nodes>
                                        <ignav:Node Text="Child Node">
                                        </ignav:Node>
                                        <ignav:Node Text="Child Node">
                                        </ignav:Node>
                                        <ignav:Node Text="Child Node">
                                        </ignav:Node>
                                    </Nodes>
                                </ignav:Node>
                            </Nodes>
                        </ignav:UltraWebTree>
                    </Template>
                </iglbar:Group>
            </Groups>
        </iglbar:UltraWebListbar>


    Also you can take a look at the links:
    Helps: http://help.infragistics.com/NetAdvantage/NET/2008.3/CLR3.5/
    Samples: http://samples.infragistics.com/2008.3/WebFeatureBrowser/Default.aspx

    Hope this helps. 

Reply Children
No Data