How to conditionally add DetailTemplate to TreeView

Thread is closed for posting
1 posts, 0 answers
  1. FE42F46A-C59C-4E81-A67F-4420B1FEFC8F
    FE42F46A-C59C-4E81-A67F-4420B1FEFC8F avatar
    5 posts
    Member since:
    Jul 2010

    Posted 13 May 2011 Link to this post

    Requirements

    RadControls version

     2011.1.413.40

    .NET version

     2.0

    Visual Studio version

     2008 & 2010

    programming language

     C#

    browser support

    all browsers supported by RadControls


    PROJECT DESCRIPTION
    [enter description here, together with step-by-step instructions on how to use the project]

    Hi - i have a radtreeview control with the following design. Depending on data that is being bound i would like to add a DetailTemplate to just that particular row. How can i do the same. thank you

    <

     

     

    telerik:RadTreeList runat="server" ID="RadTreeList" DataKeyNames="ID" ParentDataKeyNames="PID"

     

     

     

    OnNeedDataSource="RadTreeList_NeedDataSource" AutoGenerateColumns="false" PagerStyle-AlwaysVisible="true"

     

     

     

     

    PagerStyle-Mode="NextPrevAndNumeric" PageSize="10" AllowPaging="true">

     

     

     

     

    <Columns>

     

     

     

    <telerik:TreeListBoundColumn DataField="AfflName" HeaderText="Name" UniqueName="AfflName">

     

     

     

    </telerik:TreeListBoundColumn>

     

     

     

    <telerik:TreeListBoundColumn DataField="ID" HeaderText="ID" UniqueName="ID">

     

     

     

    </telerik:TreeListBoundColumn>

     

     

     

    <telerik:TreeListTemplateColumn UniqueName="Addr" HeaderText="Address" DataField="Addr" >

     

     

     

    <ItemTemplate>

     

     

     

    <asp:Label ID="addr" runat="server"><%# Eval("Addr") %></asp:Label>

     

     

     

    </ItemTemplate>

     

     

     

    </telerik:TreeListTemplateColumn>

     

     

     

    </Columns>

     

     

     

     

    </telerik:RadTreeList>

     

Back to Top

This Code Library is part of the product documentation and subject to the respective product license agreement.