<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: Firefox: tooltip on table cells not displayed until mouse out</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>ppr on Firefox: tooltip on table cells not displayed until mouse out</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p21089</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p21089</guid>
        	        	<description><![CDATA[<p>Hi all,<br />Yes I have the same problem in the Firefox browser.<br />Fortunately, you can bypass it by replacing the cell columns tooltip manager by another.<br />In my case, i usually use jquery.qtip extension. ( <a href="http://craigsworks.com/projects/qtip" rel="nofollow" target="_blank">http://craigsworks.com/projects/qtip</a> &#160; )<br />Here is an example:<br />Use the "LoadComplete" handle event to replace the tooltip cell management. <br />To see an example, take the "JSON Data" sample in "Loading data" section of jqgrid demo.<br />In the jsonex.js source, insert after line 14 this code:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1280' value='Select Code' data-codeid='sfcode1280' /></p>
<div class='sfcode' id='sfcode1280'>&#160;&#160;&#160;&#160;&#160;&#160;&#160; loadComplete : function() {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(&#34;#list2 tr &#62; td&#34;).each(function(){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if ($.trim($(this).attr(&#34;title&#34;))!=&#39;&#39;) { <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(this).qtip({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;content:{text:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;position : {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;corner: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;target:&#39;topRight&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;tooltip:&#39;bottomLeft&#39;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;style: { <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; padding: 5,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; background: &#39;#FFFFE0&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; textAlign: &#39;center&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; border: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; width: 7,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; radius: 5<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; },<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; tip: &#39;bottomLeft&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; name: &#39;blue&#39; // Inherit the rest of the attributes from the preset dark style<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;});</div>
<p>Download the qtip extension from the official site and install it on your server side.<br />in the jqgrid.html, in the header javascript section , declare the call for this extension.</p>
<p>Now you should see the cell column tooltip without bug with Firefox.</p>
<p>Hope this will help.</p>
<p>Best regards</p>
<p>Phil</p>
]]></description>
        	        	<pubDate>Thu, 02 Dec 2010 23:03:19 +0200</pubDate>
        </item>
        <item>
        	<title>codex on Firefox: tooltip on table cells not displayed until mouse out</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p20967</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p20967</guid>
        	        	<description><![CDATA[<p>+1</p>
<p>Can anyone suggest any fixes or workarounds for this?</p>
]]></description>
        	        	<pubDate>Wed, 24 Nov 2010 00:30:30 +0200</pubDate>
        </item>
        <item>
        	<title>mattm on Firefox: tooltip on table cells not displayed until mouse out</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p19352</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p19352</guid>
        	        	<description><![CDATA[<p>Hi JS - I am noticing this exact behavior as well... with jQgrid 3.5.3 on firefox 3.6.8.&#160; It seems to be a new problem maybe from a browser update because my grid code hasnt changed for a few months.</p></p>
]]></description>
        	        	<pubDate>Fri, 27 Aug 2010 00:44:20 +0300</pubDate>
        </item>
        <item>
        	<title>JS on Firefox: tooltip on table cells not displayed until mouse out</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p19104</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/firefox-tooltip-on-table-cells-not-displayed-until-mouse-out#p19104</guid>
        	        	<description><![CDATA[<p>I am using&#160;jqGrid 3.7.1 for my web app.&#160;&#160;I&#160; noticed some strange tooltip behavior using Firefox 3.6.3.&#160; I don&#39;t reliably get tooltips after I mouse over one cell, and moving to the next cell.&#160;</p>
<p>Here is how you create the behavior. I mouse over a cell which also highlight the entire row, tooltip is displayed. I then move mouse down to the cell below the previous cell, only the row is highlighted, but no tooltip.</p>
<p>After some more testing, I realize I have to mouse out of the entire grid, then mouse over the cell in order for tooltip to be displayed. Can someone tell me if this is a Firefox behavior? And more important, can this be remedied somehow. Is there anything I can do to add a mouse-out event?</p>
<p>BTW, the tooltips work perfectly in IE 6, and 8.</p></p>
]]></description>
        	        	<pubDate>Thu, 12 Aug 2010 18:42:30 +0300</pubDate>
        </item>
</channel>
</rss>