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

Is Expand property Not Working in RadTreeListView

2 Answers 123 Views
TreeListView
This is a migrated thread and some comments may be shown as answers.
Manishkumar
Top achievements
Rank 1
Manishkumar asked on 01 Feb 2011, 02:44 PM

Hi,
Previously I was using this code in WPF .net 4.0 framework and was working correctly.

Code at RowLoaded Event:
 

TreeListViewRow row = e.Row as TreeListViewRow; 
   
Binding binding = new Binding("IsExpanded") { Source = row.Item }; 
  
binding.Mode = BindingMode.TwoWay; 
  
row.SetBinding(TreeListViewRow.IsExpandedProperty, binding);

 

 

 

which indirectly calls the

RowIsExpandedChanging event somehow.
But now when I migrated to .net 3.5 framework, due to some limitations, the same code was not working.
Now it is not calling the RowIsExpandedChanging event.
Please suggest me how to overcome from this problem, is there any other way to do the same in .net 3.5.

Thanks in Advance.

 

 

 

2 Answers, 1 is accepted

Sort by
0
Pavel Pavlov
Telerik team
answered on 02 Feb 2011, 02:04 PM
Hello Manishkumar,

Please share the exact  versions of telerik dlls you were using with .NET 4 and the version of dlls you were using with .NET 3.5 . I will try to reprpoduce the issue here and see where the trouble might come form .

Regards,
Pavel Pavlov
the Telerik team
Let us know about your Windows Phone 7 application built with RadControls and we will help you promote it. Learn more>>
0
Manishkumar
Top achievements
Rank 1
answered on 02 Feb 2011, 02:24 PM
Hi Pavel Pavlov,
Tried hard and got the solution at the last for the same.
Thanks for your support regarding the issues I faced, just because of that, today I was able to get all my jobs done.
Thanks Telerik Team too.
Tags
TreeListView
Asked by
Manishkumar
Top achievements
Rank 1
Answers by
Pavel Pavlov
Telerik team
Manishkumar
Top achievements
Rank 1
Share this question
or