question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

UI becomes not responsive after the dialog is closed ( iOS )

See original GitHub issue

I am calling it with :

public static void simplePopup( string message )
        {
            onConfirmClicked = null;

            messageText      = message;
            captionText      = "test";

            if( dialogInstance == null )
            {
                try
                {
                    dialogInstance = new SimpleDialog();
                }
                catch( Exception ex )
                {
                }
            }
            try
            {
                 
                ( App.instance.MainPage as ExtendedNavigationPage ).Navigation.PushPopupAsync( dialogInstance );
                 
            }
            catch( Exception ex )
            {
            }
        }

and I am closing it from a “OK” button within the class with the follow code:

private void onButtonConfirmationClicked( object sender, EventArgs e )
        {
            try
            {
                if( onConfirmClicked != null )
                    onConfirmClicked();
            }
            catch( Exception ex )
            {
            }

            try
            {
                //( App.instance.MainPage as ExtendedNavigationPage ).Navigation.PopAllPopupAsync();
                ( App.instance.MainPage as ExtendedNavigationPage ).Navigation.RemovePopupPageAsync( dialogInstance );
            }
            catch( Exception ex )
            {
            }

        }

anyway - once the dialog is closed the page which is on top of the modal stack becomes with not responsive UI.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:13 (6 by maintainers)

github_iconTop GitHub Comments

2reactions
rotorgamescommented, Dec 18, 2017

@YordanYanakiev Update to 2.4.0.280 or higher.

1reaction
rotorgamescommented, Dec 18, 2017

@YordanYanakiev Give me a stack trace of the exception

Read more comments on GitHub >

github_iconTop Results From Across the Web

Mac OS Big Sur - Dialog box not responding to mouse clicks
When I open dialog window, it freezes. Can't click anywhere on dialog, even Cancel button. When I resize a little bit it become...
Read more >
Angular 8 P-dialog - ipad - responsiveness issue
But when we go to ipad view, dialog maximize and close button seems unreachable. Below is p-dialog with [responsive]="true" added already. What ...
Read more >
Portions of VS become unresponsive for several seconds.
This started happening after a few weeks of using VS. This issue is sporadic and I'm unable to detect any pattersns to reproduce....
Read more >
"Visual Studio is busy" - unresponsive for 30 MINUTES
It would appear there is something very, very wrong with how you're retrieving credentials (i.e. no sane timeout and completely blocking the UI...
Read more >
Bootstrap Modal Dialog showing under Modal Background
The easiest solution is to move the modal dialog outside of any container and just declare it under the <body> element, or -...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found