Hello, Dilyan. We want to add a little more. You create and populate your data source colection in you ViewModel class cunstructor.
public
MyViewModel()
{
this
.groups =
new
ObservableCollection<Group>();
var group =
new
Group() { Name =
"Parent Group"
};
var childGroup =
new
Group() { Name =
"Child Group"
};
childGroup.ChildProfileElenents.Add(
new
Register()
{
Name =
"Some Name"
,
CurrentValue =
"5"
});
group.ChildProfileElenents.Add(childGroup);
this
.groups.Add(group);
}
But we are doing this in IConfirmNavigationRequest.INavigationAware.OnNavigatedTo event handler (we use Prism). Could this last (that we create and populate our data source colection in this event handler) be the reason of that RadTreeListView does not allow to edit itself normally? Please reply.