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
-
Your "open data" button works perfectly for on. on web save software version
-
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.
-
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 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.
-
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
-
I have the same problem. New release hangs when:
- After open database triggers openFullScreen()
- The above step opens a Page full of buttons. Each button has the action openTable("table name");
- It was working perfectly before the upgrade to 13.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!)
Content aside
- Status Answered
- 7 days agoLast active
- 16Replies
- 86Views
-
5
Following