diff --git a/layouts/v7/modules/Reports/resources/List.js b/layouts/v7/modules/Reports/resources/List.js
index 8447e40ed9c08f99a3e42573bf2111d8352afd9d..fe9832937f3762edd294555a76f4c48abfcc9cf2 100644
--- a/layouts/v7/modules/Reports/resources/List.js
+++ b/layouts/v7/modules/Reports/resources/List.js
@@ -320,6 +320,7 @@ Vtiger_List_Js("Reports_List_Js",{
                 scrollInertia: 70,
                 mouseWheel: {preventDefault: true}
             };
+			jQuery('.quickPreviewSummary').trigger(Vtiger_Widget_Js.widgetPostLoadEvent);
             app.helper.showVerticalScroll(jQuery('.quickPreview .modal-body'), params);
         });
     },
diff --git a/layouts/v7/modules/Vtiger/resources/dashboards/Widget.js b/layouts/v7/modules/Vtiger/resources/dashboards/Widget.js
index 58b15c06d5ecbb1ae88e6ed2159f8fbe785e26db..cdcb65375111cebe81a11bee6758be7ae7e14240 100644
--- a/layouts/v7/modules/Vtiger/resources/dashboards/Widget.js
+++ b/layouts/v7/modules/Vtiger/resources/dashboards/Widget.js
@@ -304,8 +304,7 @@ Vtiger.Class('Vtiger_Widget_Js',{
     },
     
     openUrl : function(url) {
-        var win = window.open(url, '_blank');
-        win.focus();
+		window.open(url, '_blank');
     }
 });