
I have done some more testing and I believe that this behavior might be exclusive to Chrome. Firefox and Edge do not behave this way. They fully load pages in the background.
Does anyone know why Chrome might be behaving this way vs the other browsers?
Does anyone have any advice on how I can get these pages to load in the background?
@orbitrod, thank you for your report.
We've acknowledged the issue and added to our backlog.
Awesome, thank you for the update.
@orbitrod I have found the same issue on Firefox too. I believe this is not browser specific It must be due to Magento 2 UI js behavior. I will work on it to find the exact reason behind it.
Hi @shikhamis11. Thank you for working on this issue.
Looks like this issue is already verified and confirmed. But if your want to validate it one more time, please, go though the following instruction:
Component: XXXXX label(s) to the ticket, indicating the components it may be related to.[ ] 2. Verify that the issue is reproducible on 2.3-develop branchDetails
- Add the comment @magento-engcom-team give me 2.3-develop instance to deploy test instance on Magento infrastructure.
- If the issue is reproducible on 2.3-develop branch, please, add the label Reproduced on 2.3.x.
- If the issue is not reproducible, add your comment that issue is not reproducible and close the issue and _stop verification process here_!
[ ] 3. Verify that the issue is reproducible on 2.2-develop branch. Details
- Add the comment @magento-engcom-team give me 2.2-develop instance to deploy test instance on Magento infrastructure.
- If the issue is reproducible on 2.2-develop branch, please add the label Reproduced on 2.2.x
[ ] 4. If the issue is not relevant or is not reproducible any more, feel free to close it.
@magento-engcom-team give me 2.3-develop instance
Hi @orbitrod. Thank you for your request. I'm working on Magento 2.3-develop instance for you
Hi @orbitrod, here is your Magento instance.
Admin access: https://i-15504-2-3-develop.instances.magento-community.engineering/admin
Login: admin Password: 123123q
Instance will be terminated in up to 3 hours.
Firefox
I have done some more testing and I believe that this behavior might be exclusive to Chrome. Firefox and Edge do not behave this way. They fully load pages in the background.
Does anyone know why Chrome might be behaving this way vs the other browsers?
Firefox clearly behaves the same. (Magento 2.3.3)
I'm annoyed by this ever since I switched from Magento 1.9 to Magento 2.1 (and later 2.2 and 2.3).
"Assignees: No one assigned" after 1.5 years?
@MarcusWolschon Glad to see you on this issue. If we can get more people to confirm this problem, we might be able to get the attention of the developers to issue a fix.
This poor design or a bug is still happening in 2.3.5-p1. Even more time is wasted when you do tracking on Sales > Orders page.
I will give you an example.
I am not sure how this "feature" is still in Magento 2, after 4 years. Small businesses running M2 do not have unlimited amount of time. Why would you stop loading pages when a tab is switched? Those 5-7 seconds it takes to load the Order page I can do "other" stuff. Those seconds add up when you do 10 hrs a day every in Magento 2. Countless hours are wasted waiting for page to load.
just for the search folks:
you just have to add an template to the pages or global for every adminhtml page with "$(window).trigger('blur');".
tested with magento 2.3
_Custom/Module/view/adminhtml/layout/default.xml_
<?xml version="1.0"?>
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/layout_generic.xsd">
<referenceContainer name="content">
<block class="Magento\Backend\Block\Template" name="alway.blur" template="Custom_Module::blur.phtml"/>
</referenceContainer>
</layout>
_Custom/Module/view/adminhtml/templates/blur.phtml_
<script type="text/javascript">
require([
'jquery'
], function ($) {
window.setTimeout(function() {
$(window).trigger('blur');
}, 1000)
});
</script>
Yes, this is really annoying. Think of all the power users that have to work with magento every day.
I am just developing and I am already getting nervous twitches whenever I see a spinner on the screen.
Most helpful comment
This poor design or a bug is still happening in 2.3.5-p1. Even more time is wasted when you do tracking on Sales > Orders page.
I will give you an example.
I am not sure how this "feature" is still in Magento 2, after 4 years. Small businesses running M2 do not have unlimited amount of time. Why would you stop loading pages when a tab is switched? Those 5-7 seconds it takes to load the Order page I can do "other" stuff. Those seconds add up when you do 10 hrs a day every in Magento 2. Countless hours are wasted waiting for page to load.