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

Wrong value of TreeListViewRow's IsExpanded Propery in TreeListViewRow.IsExpandedChanged event(Q3 sp1)

4 Answers 65 Views
TreeListView
This is a migrated thread and some comments may be shown as answers.
Minwei
Top achievements
Rank 1
Minwei asked on 20 Jan 2011, 06:40 AM
Hi guys,
 we came across a problem when upgrading RadControl from Q2 to Q3.

The value of TreeListViewRow's IsExpanded Propery in TreeListViewRow.IsExpandedChanged event is always 'false'

Code:
this.RowLoaded += new EventHandler<Telerik.Windows.Controls.GridView.RowLoadedEventArgs>(PumaTreeListView_RowLoaded);

private void PumaTreeListView_RowLoaded(object sender, Telerik.Windows.Controls.GridView.RowLoadedEventArgs e)
{
    TreeListViewRow row = e.Row as TreeListViewRow;
    if (row != null)
    {
        row.IsExpandedChanged += new RoutedEventHandler(row_IsExpandedChanged);
    }
}

private void row_IsExpandedChanged(object sender, RoutedEventArgs e)
{
    TreeListViewRow row = sender as TreeListViewRow;
    //Here the row.IsExpanded property always 'false' in Q3 sp1 version
}

While in the row.IsExpandedChanging event, the row.IsExpanded works perfectly.
Now, we just want to process business logic in Changed event for Changing event may be Handled later.

Could you help us to solve this issue, please?

Thanks.

4 Answers, 1 is accepted

Sort by
0
Milan
Telerik team
answered on 20 Jan 2011, 05:05 PM

Hi Minwei,

This is know issues which has just been fixed. The fix will be available next Monday with our Internal Build. 


Greetings,
Milan
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
Minwei
Top achievements
Rank 1
answered on 21 Jan 2011, 02:36 AM
Hi Milan ,

When can we get the fixed version, Please?
Will it be avialble in 2011 Q1 version?

We hope we can get the fixed and stable version ASAP.

Thanks
0
Accepted
Milan
Telerik team
answered on 21 Jan 2011, 07:41 AM
Hi Minwei,

In case you are unable to use Internal builds, the fix will be part of our next official release which will be Q1 at the latest or SP2 if we choose to have another service pack release. 


All the best,
Milan
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
Minwei
Top achievements
Rank 1
answered on 21 Jan 2011, 11:49 AM
OK, Thanks.
Tags
TreeListView
Asked by
Minwei
Top achievements
Rank 1
Answers by
Milan
Telerik team
Minwei
Top achievements
Rank 1
Share this question
or