Reputation: 2092
I have problem with passing parameter of ListView(Data Json Response) to Detailview. In listview i showed name of the title, and i want to show some details in DetailView. here the problem i can`t get index value of set of JSOn Value to pass Detail view.
Thanks in Advance.
Upvotes: 0
Views: 59
Reputation: 5768
When you use ListView and select an Item, you have SelectedItem property with the selected value. Pass SelectedItem to your DetailView. It's enough
Upvotes: 1