0

On the web version (Server 3.14.0), clicking the quick access button causes the page to freeze.

Is this an issue with the new version? Thank you for your help!

16 replies

null
    • Mel_Charles
    • 10 days ago
    • Reported - view

    Your "open data" button works perfectly for on. on web save software version

      • gold_cat
      • 10 days ago
      • Reported - view

       This issue does exist on my web version, and I have also cleared the browser cache.

    • Fred
    • 10 days ago
    • Reported - view

    I'm not sure why you want to delete(this) before you want to openTable(). When I run it (also in the public cloud), I get the spinning circle of death. I had to reload the page.

    I would not put the delete(this) first.

    • Mel_Charles
    • 10 days ago
    • Reported - view

    I only tested the action of the button .... as you stated it freezes. and for me it opens the table as expected in both Chrome and Safari. Did not look as script. Itself

      • Fred
      • 10 days ago
      • Reported - view

      That is the action of the button. delete() then openTable(). I'm using Firefox.

      • gold_cat
      • 10 days ago
      • Reported - view

       But it still freezes even if I only keep OpenTable.

      • Fred
      • 10 days ago
      • Reported - view

      try removing the Trigger after open script

      • gold_cat
      • 10 days ago
      • Reported - view

        Hi,

      What do you mean by "Trigger"? The situation is that this feature worked fine before the update, as I haven't changed the code.

    • Mel_Charles
    • 9 days ago
    • Reported - view

    @fred I think that is what   possibly intends. !

    Test table has 2 records; Data table has 7 records

    When you click the button on test table it deletes all records in test table and then opens data table

    I am not questioning  method. His question was why is it freezing. All I am saying if that for me it does not feeze but opens data table straight away.

    I might guess that in deleting the records in Test table it might be where it gets stuck at that point but @gold does not state whether a) his records in test table have indeed gone and b) if that his intended purpose.

    If this is a test application then fair enough but if not, then I would at the very least what a pop to say are you sure you want to delete all the data in test table.

      • gold_cat
      • 9 days ago
      • Reported - view

       

      Which browser are you using? I am using Chrome and Safari, and the issue occurs on both. Even if I remove the delete command, it still freezes.

      • Mel_Charles
      • 9 days ago
      • Reported - view

       Mac PC with web/cloud version

      works with both Chrome and Safari (for me)

      • gold_cat
      • 9 days ago
      • Reported - view

       Thank you for feedback.

    • danielmarine
    • 7 days ago
    • Reported - view

    Hi   ,

    The issue is because you are not running the closeFullScreen() function after your script.

    The new update has changed how full screen works, by navigating to another location in the database either by deleting the record you are in or using openTable(), the fullscreen view has technically not closed, even though it appears it has.

    Try this code in the button:

    delete this;
    openTable("Data");
    closeFullscreen()

    I hope this helps!

    Kind regards,

    Daniel

      • gold_cat
      • 7 days ago
      • Reported - view

       Thank you, Daniel! Your solution fixed the problem!

    • Consultant and developer
    • Javier
    • 7 days ago
    • Reported - view

    I have the same problem. New release hangs when:

    1. After open database triggers openFullScreen()
    2. The above step opens a Page full of buttons. Each button has the action openTable("table name");
    3. It  was working perfectly before the upgrade to 13.4
    4. Adding the closeFullScreen() does not avoids the hanging

    What worked for me:

    closeFullscreen();openTable("Table name")

    So, the order is important! (but still, a nasty bug!)

      • gold_cat
      • 7 days ago
      • Reported - view
      closeFullscreen();
      openTable("Data");
      

       I have rearranged my code in this way and am unsure if your solution would still work.

Content aside

  • Status Answered
  • 7 days agoLast active
  • 16Replies
  • 86Views
  • 5 Following