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

Jumplist's e.DataItemToNavigate doesnt work!

1 Answer 21 Views
JumpList
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Fairoz
Top achievements
Rank 1
Fairoz asked on 20 Feb 2012, 09:07 AM

Just installed the Q1 2012 version and the phonebook sample in the Examples_WP project doesn't work well. The jumplist does not get populated with the entire contacts list.
 
And when I copied the example over and used an observablecollection as the ItemsSource, the jumplist gets populated, but does not jump to the group when the below code is reached. I have checked and the sort and group descriptors are ok. The group.Key is correct as well, but it just does not jump to the selected group.
 

 

private void RadJumpList_GroupPickerItemTap(object sender, Telerik.Windows.Controls.GroupPickerItemTapEventArgs e)

 

{

    foreach (Telerik.Windows.Data.DataGroup group in radJumpList.Groups)

    {

        if (object.Equals(e.DataItem, group.Key))

        {

            e.DataItemToNavigate = group;

            //MessageBox.Show(group.ToString());

            return;

        }

    }

}

Any idea why this is so?
Thanks

1 Answer, 1 is accepted

Sort by
0
Ivo
Telerik team
answered on 20 Feb 2012, 04:53 PM
Hi,
Thank you for your feedback!
We've retested the example and on our side it behaves as expected- the jumplist is populated properly and navigation to the selected group is performed.

Could you, please send us your project, into which you've managed to reproduce the case that it does not jump to the selected group- that will help us to troubleshoot the described issue.

Regards,
Ivailo Dinkov
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
Tags
JumpList
Asked by
Fairoz
Top achievements
Rank 1
Answers by
Ivo
Telerik team
Share this question
or