SfPopup inside kanban not showed

Hi ,

I try use tapped event in kanban card to show popup.
This work well in UWP, but when tested in Android emulator and phone, popup only showed after second tapped to excute other screen action .

Code  attached
thanks for any help.

Carbonete 


Attachment: AppKambanUWPAndroid_36821b1b.zip

1 Reply

VR Vigneshkumar Ramasamy Syncfusion Team September 24, 2018 10:25 AM UTC

Hi Sergio,  
  
Thanks for contacting Syncfusion support.  
  
We have analyzed your query for the SfPopup inside kanban not showed. We have validated the provided sample where you have used the kanban and popup inside the content of the ContentView and you have displayed the popup using the tapped event in Kanban. In android, we have notice the same behavior as you have reported that popup is showed only after the second tapped action. To resolve this, you can use this popup in the separate content page and open the popup from the Tapped event of Kanban. Refer the below code snippet.  
  
public void Toquei(object sender, Syncfusion.SfKanban.XForms.KanbanTappedEventArgs e)  
{  
    Popuppage popup = new Popuppage();  
    (popup.Content as SfPopupLayout).Show();  
}  
  
We have attached the sample for your requirement and download from the following link.  
  
For more details about the PopupLayout, you can refer our user guide documentation in the below link  
  
Regards,  
Vigneshkumar R 


Loader.
Up arrow icon