This is a migrated thread and some comments may be shown as answers.

indenture bug

5 Answers 87 Views
TreeListView
This is a migrated thread and some comments may be shown as answers.
Marc
Top achievements
Rank 1
Marc asked on 14 Oct 2010, 03:03 AM
Are there any known issues or methods of binding that would cause the indentation to break. If you look at the attached image, the numbers are the levels of indenture, yet indenture level 3 pops out of its nesting in the UI.

5 Answers, 1 is accepted

Sort by
0
Pavel Pavlov
Telerik team
answered on 19 Oct 2010, 01:03 PM
Hello Marc,

There were such problems and I believe they were addressed. I would recommend to download the latest internal build ( it should be available  for download in your account ) and give it a try.

In case this does not help , I will be glad to learn more about the scenario causing the problem ( e.g. some code , steps to reproduce) in order to address it in a timely manner.

Regards,
Pavel Pavlov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Marc
Top achievements
Rank 1
answered on 19 Oct 2010, 03:56 PM
Just to clarify are you referring to the q3 beta?
0
Pavel Pavlov
Telerik team
answered on 22 Oct 2010, 08:12 AM
Hi Marc,

Both the latest internal build and the beta should contain the fixes.

Sincerely yours,
Pavel Pavlov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Marc
Top achievements
Rank 1
answered on 26 Oct 2010, 05:47 AM
Unfortunately, we are still seeing the same behavior (inconsitent, buggy indenture) with the latest binaries. I'm including a snippet of the relevant xaml. The data model is a pretty straightforward hierarchical structure. Any suggestions?


<telerik:RadTreeListView x:Name="bomTreeListView"
  
AutoGenerateColumns="False"
  
Grid.Row="2"
  
SelectionMode="Extended"
  
SelectionUnit="FullRow"
  
ItemsSource="{Binding Path=BomParts, Source={StaticResource BomViewModel}}"
  
SelectedItem="{Binding SelectedBomPart, Mode=TwoWay}"
  
EnableColumnVirtualization="False"
  
RowActivated="BomTreeListViewRowActivated">
  
  
  
<telerik:RadTreeListView.ChildTableDefinitions>
  
  
<telerik:TreeListViewTableDefinition ItemsSource="{Binding Children}" />
  
  
</telerik:RadTreeListView.ChildTableDefinitions>
  
  
  
  
<telerik:GridViewDataColumn Header="Part #"
  
DataMemberBinding="{Binding Part.PartNumber}"
  
IsReadOnly="True" />
  
<telerik:GridViewDataColumn Header="Description"
  
DataMemberBinding="{Binding Part.Description}"
  
Width="150"
  
IsReadOnly="True" />
  
<telerik:GridViewDataColumn Header="Indenture"
  
DataMemberBinding="{Binding IndentureLevel}"
  
IsReadOnly="True" />
0
Pavel Pavlov
Telerik team
answered on 29 Oct 2010, 09:47 AM
Hi Marc,

Please excuse me for the delayed answer. I was trying to reproduce it locally ,  but with no success so far.
The problem may be a bug in RadTreeListView or something in the way the source data is populated.

In case we have a bug , I will be glad if we can isolate it and provide a fix for you in  the very next ofical version ( expected in two weeks) .

Can you please share the code of your ViewModel and the code used to populate the source of the RadTreeListView. This will help me prepare a repro project.

In case this is a bug , a fix will be provided, in case I find something in the code - i am sure we can think of some workaround.

All the best,
Pavel Pavlov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
TreeListView
Asked by
Marc
Top achievements
Rank 1
Answers by
Pavel Pavlov
Telerik team
Marc
Top achievements
Rank 1
Share this question
or