Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

Firefox - Prevent this page from creating additional dialogs

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Firefox - Prevent this page from creating additional dialogs

    Starting with Firefox 4.something, and continuing in the latest v5, they have this very unfortunate safety feature that allows the user to TURN OFF Ajax popup dialogs on the page. See my attachment. If the user checks the box, all of your application's ajax popup dialogs on that page will be disabled. When they refresh the page, the dialogs come back to life.

    I cannot find any way to disable this feature from the web server (it is easy to disable from the users own machine, but that doesn't help).

    I guess a user will eventually figure out they should not check that box, although it is very inviting.

    Note - it only appears if you fire off a popup dialog more than a few times on the same page.
    Attached Files
    Steve Wood
    See my profile on IADN


    #2
    Re: Firefox - Prevent this page from creating additional dialogs

    Agreed. It sucks.
    Peter
    AlphaBase Solutions, LLC

    [email protected]
    https://www.alphabasesolutions.com


    Comment


      #3
      Re: Firefox - Prevent this page from creating additional dialogs

      I'm fairly new to Alpha 5 here, and coming across this thread 2 years later as I look for a solution to the same issue. Is there a way around this, or another way to create message boxes for web applications?

      Comment


        #4
        Re: Firefox - Prevent this page from creating additional dialogs

        Code:
        alert('your message');
        still works but as noted above they can be blocked by the user

        In a Javascript Events, go to Add New Action > Message Box > Use advanced message box. This will create Javascript something like this:
        Code:
        A5.msgBox.show('MyTitle','<div style=`height: 1in; padding: 15pt;`>My custom message</div>',[],function(button) \{});
        Either in the code for the message box buttons or elsewhere, you can use this Javascript to close the box:
        Code:
        A5.msgBox.hide();

        Comment


          #5
          Re: Firefox - Prevent this page from creating additional dialogs

          I've used this before and it completely slipped my mind. Works great, problem solved ... thank you so much!

          Comment


            #6
            Re: Firefox - Prevent this page from creating additional dialogs

            I am having a nightmare with this issue. Users think that it is an option that I've given them in my program and even though I have a big message on their home screen telling them NOT to click the 'Prevent This Page From Creating Additional Dialogs' if they see it, they, of course, still do. I probably have thousands of alert messages in my application. And, yes, I've tested using an A5 message box, but my trouble is that quite often I already have an A5 message box telling them to wait for something and THEN need to give them some message after whatever it is gets done. So when I try to Hide the first message box and then open the second message box, for some reason the screen freezes. I have tried wrapping the opening of the second message box in a timeout function, but that doesn't seem to help.

            So... is there ANY way to stop firefox from giving the user the option to prevent additional dialogs? Or am I going to have to comb through my hundreds and hundreds of components and do something else everywhere I have the javascript alerts? I have to be able to give my users lots of messages in this big job costing and accounting program.
            Carol King
            Developer of Custom Homebuilders' Solutions (CHS)
            http://www.CHSBuilderSoftware.com

            Comment


              #7
              Re: Firefox - Prevent this page from creating additional dialogs

              P.S. You said 'it is easy to disable from the users own machine'. How is that done? I want to put that in a document we are preparing for the user so that they set up their browser correctly. Thanks so much.
              Carol King
              Developer of Custom Homebuilders' Solutions (CHS)
              http://www.CHSBuilderSoftware.com

              Comment


                #8
                Re: Firefox - Prevent this page from creating additional dialogs

                I think Steve said to refresh the page and dialogs come back.
                This also might help, helped me for something else once
                http://stackoverflow.com/questions/1...ipt-in-firefox
                Last edited by DaveM; 07-01-2015, 08:21 PM.
                Dave Mason
                [email protected]
                Skype is dave.mason46

                Comment


                  #9
                  Re: Firefox - Prevent this page from creating additional dialogs

                  an addition was made to V12 to fix this. The issue is called cross-domain scripting.
                  Steve Wood
                  See my profile on IADN

                  Comment


                    #10
                    Re: Firefox - Prevent this page from creating additional dialogs

                    Have asked Selwyn about all of it and he is saying there is not a way to turn off that Prevent Additional Dialogs thing programmatically. He is giving me some alternative suggestions to using alert. I'm so tired....
                    Carol King
                    Developer of Custom Homebuilders' Solutions (CHS)
                    http://www.CHSBuilderSoftware.com

                    Comment


                      #11
                      Re: Firefox - Prevent this page from creating additional dialogs

                      Could you use another notification mechanism that is implemented in javascript? This bypasses use of alerts that are the problem in this case. Not at my machine but did tryout some js code for such needs. Will update thread of the tools.

                      See toastr
                      Last edited by kotinkarwak; 07-02-2015, 12:26 PM.
                      Regards,

                      Kotin Karwak
                      Developer Edition
                      Version 12.3 Build 2684
                      System Addins: Build 4438
                      Build machine Windows Vista
                      Skype: mateso08

                      Comment


                        #12
                        Re: Firefox - Prevent this page from creating additional dialogs

                        It has been a messup eversince these security conserns have grown up its not only about alert(), window.location() and few functions, but in feature a lot of other functions will be restricted or deprecated and will not be replaced or provide any replacement or substute for those functions, Which will result in forcefully buying and using frameworks to produce a fully functional application then there will be no scope for any treditional programming will be left.

                        Sorry to say but in the name of security programmers life is going to be hell ths way, There should be some some real solution rather then disabling or nullifying the methods and functions.

                        Comment


                          #13
                          Re: Firefox - Prevent this page from creating additional dialogs

                          Just thought I'd share what we finally found to take care of re-enabling the pop ups IF the user clicks the check box to prevent additional dialogs. Have the user do Ctrl+F5 and then click Leave Page. This apparently clears some cache that gets stuck and keeps preventing dialogs, even if they closed browser or refreshed. We found it's probably best if the user closes the browser completely after doing the Ctrl+F5, and then comes back to the site.

                          We were having issues with that prevention NEVER going away after the user check marked it. Really hard to find the solution, but we found it. I hope this helps someone else.
                          Carol King
                          Developer of Custom Homebuilders' Solutions (CHS)
                          http://www.CHSBuilderSoftware.com

                          Comment

                          Working...
                          X