I am having a Long List Multi Selector with Grouping enabled to have jump list feeling for Windows Phone 8 app.
We can select maximum of 8 items in long list multi selector. After selecting the items the items can be seen checked and in code as well I am able to retrieve them via SelectedItems list.
But when I am trying to come back to that page again with same item source to Long List MultiSelector and trying to get Selected Items list pre-selected when Long List Multi Selector is opened the functionality is not happening.
PFB the sample code for the same:-
foreach (var item in SelectedValue)
MultiSelectLongList.SelectedItems.Add(item);
everything else is working correctly in Long List multi selector except for preselecting some items when list is opened.
Is there any other way of doing it. Please help me out.
Thanks