<?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: Rendering local data without being attached to DOM</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/rendering-local-data-without-being-attached-to-dom</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/rendering-local-data-without-being-attached-to-dom/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>developingjim on Rendering local data without being attached to DOM</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/rendering-local-data-without-being-attached-to-dom#p25591</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/rendering-local-data-without-being-attached-to-dom#p25591</guid>
        	        	<description><![CDATA[<p>I ran across an issue when mass rendering local data with options: { datatype: "local", gridview: true }. The issue turns out to be line 1598 in method addJSONData. The following original line uses the global jquery selector instead of a scoped selector</p>
</p>
<p>$("#" + $.jgrid.jqID(ts.p.id) + " tbody:first").append(rowData.join(&#39;&#39;));</p>
</p>
<p>I changed the line to the following and was able to mass render the rows without being attached to the dom.</p>
</p>
<p>$("tbody:first", t).append(rowData.join(&#39;&#39;));</p>
</p>
<p>The issue mainly came up with native Windows XP IE8 Standards as a relatively big performance hit.</p>
</p>
<p>I am using jqgrid version 4.1.1</p>
</p>
<p>Just FYI, keep up the good work!</p></p>
]]></description>
        	        	<pubDate>Thu, 05 Jan 2012 00:38:39 +0200</pubDate>
        </item>
</channel>
</rss>