Ticket T114530
Visible to All Users

TreeListControl (ItemTemplate for HierarchicalDataTemplate does not display anything)

created 11 years ago

Hi
I am trying to populate a TreeListControl .
I choose TreeDerivationMode="HierarchicalDataTemplate" and set DataRowTemplate="{StaticResource MyTemplate}"

<HierarchicalDataTemplate x:Key="MyTemplate"
                                  ItemsSource="{Binding Division.Departments}">
            <TextBlock Text="{Binding Row.Division.DivisionName}"/>
            <HierarchicalDataTemplate.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="Display Static Text"/>
                </DataTemplate>
            </HierarchicalDataTemplate.ItemTemplate>
        </HierarchicalDataTemplate>

The issue I am facing is that inner DataTemplate does not display anything, not even the static text. I got blank rows only.

Please guide me how to do it.

Thanks
Nitesh

Comments (2)
DevExpress Support Team 11 years ago

    Hi Nitesh,
    It looks like your template has incorrect bindings. Would you please provide us with your project so that we can research it and find the cause of the issue?

      Hi Alexander
      I am trying to display below structure in a treelist control.
      Requirement: When an employee has been selected it's associated Divisions and Departments should be displayed in treelist.
      Division 1
          -- > Department 1
          -->  Department 2
      Division 2
          -- > Department 1
          -->  Department 2
      The treelist control has object's of type UserDivision.
      Following are the POCO classes I am using to bind data to view.
      public class UserDivision
         {
             public User User { get; set; }
             public Division Division { get; set; }
       }
      public class Division
         {
             public int DivisionID { get; set; }
             public string DivisionName { get; set; }
             public ObservableCollection<Department> Departments { get; set; }
         }
         public class Department
         {
             public int DepartmentID { get; set; }
             public string DepartmentName { get; set; }
             public int DivisionID { get; set; }
         }
      Thanks
      Nitesh

      Answers approved by DevExpress Support

      created 11 years ago

      Hi Nitesh,
      I have thoroughly reviewed your code snippets and found that this issue occurs because of the incorrect use of the "HierarchicalDataTemplate" mode. I suggest that you modify your template and the TreeListView description in the following manner:

      C#
      <HierarchicalDataTemplate DataType="{x:Type local:UserDivision}" ItemsSource="{Binding Division.Departments}"> <TextBlock Text="{Binding Row.Division.DivisionName}" /> <HierarchicalDataTemplate.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Row.DepartmentName}" /> </DataTemplate> </HierarchicalDataTemplate.ItemTemplate> </HierarchicalDataTemplate> <dxg:TreeListView TreeDerivationMode="HierarchicalDataTemplate" />

      Regards,
      Alex

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.