<?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: c is undefined</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/c-is-undefined</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/c-is-undefined/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on c is undefined</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/c-is-undefined#p17240</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/c-is-undefined#p17240</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>configure your jsonReager for this purpose. The default one is not applicable for your response.</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data#json_data" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....#json_data</a></p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 17 May 2010 22:11:03 +0300</pubDate>
        </item>
        <item>
        	<title>mandrake on c is undefined</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/c-is-undefined#p17190</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/c-is-undefined#p17190</guid>
        	        	<description><![CDATA[<p>Hi all! I nee your help. I cannot load data from backend. I used "json" datatype and when i try to load data i responesed "c is undefined".</p>
<p>JSON response:&#160;</p>
<div class="netInfoResponseText  netInfoText ">
<pre><p><input type='button' class='sfcodeselect' name='sfselectit7674' value='Select Code' data-codeid='sfcode7674' /></p><div class='sfcode' id='sfcode7674'>{&#34;rows&#34;:[{&#34;id&#34;:&#34;1&#34;,&#34;authority&#34;:&#34;ROLE_ADMINISTRATOR&#34;,&#34;creationDate&#34;:&#34;2005-07-23 02:16:57.0&#34;,&#34;lastName&#34;:<br /> &#34;Adminich&#34;,&#34;login&#34;:&#34;root&#34;,&#34;firstName&#34;:&#34;CardAdmin&#34;,&#34;password&#34;:&#34;63a9f0ea7bb98050796b649e85481845&#34;}]}<br /><br /><br /></div><br /></pre>
<pre>It`s my table:</pre>
<p>jQuery("#usersGrid").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: "getUsersList.do",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: "GET",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "json",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: 500,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: (document.getElementById(&#39;info&#39;).offsetWidth &#8211; 40),<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#39;Id&#39;,&#39;Creation date&#39;, &#39;Login&#39;, &#39;First name&#39;,&#39;Last name&#39;,&#39;Role&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel:[<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;id&#39;,index:&#39;id&#39;, width:60, sorttype:"int"},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;creation_date&#39;,index:&#39;creation_date&#39;, width:120, sorttype:"date"},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;login&#39;,index:&#39;login&#39;, width:150},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;firstName&#39;,index:&#39;firstName&#39;, width:80, align:"right",sorttype:"float"},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;lastName&#39;,index:&#39;lastName&#39;, width:80, align:"right",sorttype:"float"},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;authority&#39;,index:&#39;authority&#39;, width:100,align:"right",sorttype:"float"}<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; multiselect: true,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; hidegrid: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; toolbar: [true,"top"],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: jQuery(&#39;#pager&#39;),<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList:[5,10,15],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; onCellSelect: function(id) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var selected = jQuery("#usersGrid").getRowData(id);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(selected[&#39;name&#39;]);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true<br />&#160;&#160;&#160; });<br />Please help me!
</p>
</div>
]]></description>
        	        	<pubDate>Sun, 16 May 2010 00:08:25 +0300</pubDate>
        </item>
</channel>
</rss>