I have a very simple page with a sfListView. I want to show a custom confirmation dialog before an action so I chose sfPopupLayout.
When clicking an listviewitem sfPopupLayout should be shown.
1)
When sfPopupLayout is declared in XAML as page root element everything works fine on android - I can see the popup. On iOS the listview seems to be completely unresponsive. No events are detected. I cannot scroll, click or do anything else there.
2)
When sfPopupLayout is NOT declared in XAML but only created in code-behind and shown by .Show(rootElement) I get on both platforms the exception that DataSouce can't be null. As sfListView is the only control with the property DataSource (which has a binding to my viewmodel) I suspect the problem there.
In the current state sfPopupLayout is unusable for me. Please help me to solve this issue.