<div dir="ltr"><span style="font-size:12.8px">Hello,</span><div><span style="font-size:12.8px">in  "</span>/layouts/vlayout/modules/Vtiger/resources/Vtiger.js" after</div><div>"registerTooltipEvents: function() {" insert a "return"<span style="font-size:12.8px"> in the end of the function. </span></div><div><span style="font-size:12.8px">It will disable the pop-up in all the modules.</span></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 24, 2016 at 12:17 PM, Greg Vas <span dir="ltr"><<a href="mailto:greg7vas@gmail.com" target="_blank">greg7vas@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Cant do that.<div><br></div><div>Any other idea how to remove the pop up when hovering over a contact in an invoice list.</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 12, 2016 at 8:58 AM, Preexo <span dir="ltr"><<a href="mailto:preexo@googlemail.com" target="_blank">preexo@googlemail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I put it into our customization module with some javascript. since only one<br>
user didn't want the popup, I just checked the user name, lol... dirty, but<br>
it works fine. This is in the document ready part of my custom extension.<br>
You might leave away the ajax request... if not, write your own adapter...<br>
Does that help you enough?<br>
<br>
<br>
        if (typeof Vtiger_Index_Js != 'undefined') {<br>
                // remember old register tooltip event before overriding<br>
                var _registerTooltipEvents = Vtiger_Index_Js.registerTooltipEvents;<br>
                // override register tooltip event<br>
                Vtiger_Index_Js.registerTooltipEvents = function() {<br>
                // get all customization data first<br>
                var data = null;<br>
                var url =<br>
'index.php?module=MSACustomizations&action=MSACustomizationsAjax&mode=getData';<br>
                AppConnector.request(url).then(<br>
                                function(data) {<br>
                                        if(data.result != null && data.result != ''){<br>
                                                // EXTENSION 1<br>
                                                // only if the user name is not equals abc register the<br>
tooltips<br>
                                                if(data.result.content.user_name !=<br>
"userNameThatDoesNotWantThePopUp"){<br>
                                                        _registerTooltipEvents();<br>
                                                }<br>
                                        } else{<br>
                                                console.log("couldn't get data from API")<br>
                                        }<br>
                                }<br>
                );<br>
                }<br>
        }<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Hovering-over-contacts-tp18396p18398.html" target="_blank">http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Hovering-over-contacts-tp18396p18398.html</a><br>
Sent from the vtigercrm-developers mailing list archive at Nabble.com.<br>
_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br>
</blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
<a href="http://www.vtiger.com/" rel="noreferrer" target="_blank">http://www.vtiger.com/</a><br></blockquote></div><br></div>