<?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: jqGrid Loading Local Data?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data</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/jqgrid-loading-local-data/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on jqGrid Loading Local Data?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data#p5728</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data#p5728</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>datatype: &#8220;clientside&#8221;,&#160; is not correct you should do</p>
<p>datatype: &#8220;clientSide&#8221;,</p>
<p>or</p>
<p>datatype: &#8220;local&#8221;,</p>
</p>
<p>Also what is happen if you try just with simple grid and array.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 01 Apr 2009 03:18:38 +0300</pubDate>
        </item>
        <item>
        	<title>ericnickus on jqGrid Loading Local Data?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data#p5708</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data#p5708</guid>
        	        	<description><![CDATA[<p>sure do... Only thing is... it doesn;t work well in IE7.&#160;&#160;&#160; Result is the javascript array</p>
<p>I left the comments in to show you what I&#39;ve been wrestling with as far as the IE 7 b.s.</p>
</p>
<p>&#160;&#160;&#160; function OnComplete(result) {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (result != null) {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#list2").jqGrid({<br />&#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; url:&#39;localhost&#39;+new Date().getTime(),<br />&#160;&#160;&#160;&#160;&#160;&#160; //&#160;&#160;&#160;&#160;&#160; url: "myurl.php",<br />&#160;&#160;&#160;&#160;&#160;&#160; //&#160;&#160;&#160;&#160;&#160; datatype: "clientSide",<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;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "clientside",&#160;&#160;&#160;&#160; &#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: "400",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;Title&#39;, &#39;Artist&#39;, &#39;Auditionplayer&#39;, &#39;Editorplayer&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [<br />&#160;&#160;&#160; { name: &#39;title&#39;, index: &#39;title&#39;, width: 185 },<br />&#160;&#160;&#160;&#160; { name: &#39;artist&#39;, index: &#39;artist&#39;, width: 140 },<br />&#160;&#160;&#160;&#160;&#160; { name: &#39;auditionurl&#39;, index: &#39;auditionurl&#39;, width: 220, align: "left" },<br />&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;editauditionurl&#39;, index: &#39;editauditionurl&#39;, width: 235, align: "left" }<br />&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "SongList"</p>
<p>&#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; jQuery("#list2").clearGridData();<br />&#160;&#160;&#160; //&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#list2").setGridParam({ url: +new Date().getTime() }); &#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var _songs = result;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (var i = 0; i &#60;= _songs.length; i++) {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#list2").addRowData(i + 1, _songs[i]);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160; }<br />if you can figure out the IE7 problem , please let me know, plus,,, the hide grid button is wierd</p></p>
]]></description>
        	        	<pubDate>Tue, 31 Mar 2009 20:07:48 +0300</pubDate>
        </item>
        <item>
        	<title>William T. Allen on jqGrid Loading Local Data?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data#p5604</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-loading-local-data#p5604</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Someone have an example of jqGrid loading local data in any format...???<br />Help would be greatly appreciated...</p>
<p>Cheers - William</p>
]]></description>
        	        	<pubDate>Wed, 25 Mar 2009 11:45:07 +0200</pubDate>
        </item>
</channel>
</rss>