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
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