<?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: Remove empty tooltip from &#160; cells</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells</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/bugs/remove-empty-tooltip-from-cells/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Remove empty tooltip from &#160; cells</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14622</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14622</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Fixed in 3.6.3.</p>
<p>Thanks</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 08 Feb 2010 12:11:18 +0200</pubDate>
        </item>
        <item>
        	<title>pbor on Remove empty tooltip from &#160; cells</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14588</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14588</guid>
        	        	<description><![CDATA[<p>So did you see performance problems with this approach? I have been carrying this patch in my local copy and didn&#39;t see performance issues, but I&#39;d be interested in knowing since I am not fond of keeping local changes and I need to evaluate if it&#39;s worth keeping the patch or now 🙂</p>
</p>
<p>Thanks in advance,</p>
</p>
<p>&#160; &#160; Paolo</p></p>
]]></description>
        	        	<pubDate>Fri, 05 Feb 2010 18:41:57 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Remove empty tooltip from &#160; cells</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14134</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14134</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks. Again IE <img class="spSmiley" style="margin:0" title="Wink" src="/blog/wp-content/forum-smileys/sf-wink.gif" alt="Wink" /></p>
<p>Will see how this will impact the performance and include it, but it is not guaranted.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 11:28:30 +0200</pubDate>
        </item>
        <item>
        	<title>pbor on Remove empty tooltip from &#160; cells</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14098</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/remove-empty-tooltip-from-cells#p14098</guid>
        	        	<description><![CDATA[<p>Sometimes I need to have empty cells with just contain the nbsp char since otherwise explorer does not shows borders of the cell.</p>
<p>In that case jqgrid shows an ugly empty tooltiip.</p>
</p>
<p>The following patch fixes the issue:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2705' value='Select Code' data-codeid='sfcode2705' /></p>
<div class='sfcode' id='sfcode2705'>
<p>diff --git a/js/grid.base.js b/js/grid.base.js<br />index a77041b..e08772e 100755<br />--- a/js/grid.base.js<br />+++ b/js/grid.base.js<br />@@ -32,8 +32,13 @@ $.extend($.jgrid,{<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; stripHtml : function(v) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; v = v+"";<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var regexp = /&#60;("[^"]*"&#124;&#39;[^&#39;]*&#39;&#124;[^&#39;"&#62;])*&#62;/gi;<br />-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(v) { return v.replace(regexp,"");}<br />-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; else {return v;}<br />+&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (v) {<br />+&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; v = v.replace(regexp,"");<br />+&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return (v &#38;&#38; v !== &#39;&#38;nbsp;&#39; &#38;&#38; v !== &#39;&#38;#160;&#39;) ? v : "";<br />+&#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; else {<br />+&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return v;<br />+&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; stringToDoc : function (xmlString) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var xmlDoc;</p>
</div>
]]></description>
        	        	<pubDate>Thu, 21 Jan 2010 10:26:30 +0200</pubDate>
        </item>
</channel>
</rss>