<?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: undefined message when loading data</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-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/undefined-message-when-loading-data/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>samiam on undefined message when loading data</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-data#p20971</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-data#p20971</guid>
        	        	<description><![CDATA[<blockquote>
<p>noelg said:</p>
<p>I solved the problem,</p>
<p>I wasn&#39;t loading language js properly.</p>
</p>
<p>sorry for that</p>
</blockquote>
<hr />
<p>Helped me out - thanks for posting the update</p>
]]></description>
        	        	<pubDate>Wed, 24 Nov 2010 07:23:21 +0200</pubDate>
        </item>
        <item>
        	<title>noelg on undefined message when loading data</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-data#p14241</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-data#p14241</guid>
        	        	<description><![CDATA[<p>I solved the problem,</p>
<p>I wasn&#39;t loading language js properly.</p>
</p>
<p>sorry for that</p>
]]></description>
        	        	<pubDate>Mon, 25 Jan 2010 13:13:25 +0200</pubDate>
        </item>
        <item>
        	<title>noelg on undefined message when loading data</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-data#p14231</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/undefined-message-when-loading-data#p14231</guid>
        	        	<description><![CDATA[<p>hello everyone,</p>
<p>I am new to jqgrid.</p>
<p>I get a label that says "undefined" when loading data into my jqgrid. The data is loaded properly but the message is always there.</p>
<p>Any idea??</p>
<p>&#60;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&#62;<br />&#60;title&#62;Prueba de JQGrid&#60;/title&#62;<br />&#60;link rel="stylesheet" type="text/css" media="screen" href="css/ui.jqgrid.css" /&#62;<br />&#60;link rel="stylesheet" type="text/css" media="screen" href="css/jquery-ui-1.7.2.custom.css" /&#62;<br />&#60;script type="text/javascript" src="js/grid-locale-sp.js"&#62;&#60;/script&#62;<br />&#60;script type="text/javascript" src="js/jquery-1.3.2.min.js"&#62;&#60;/script&#62;<br />&#60;script type="text/javascript" src="js/jquery.jqGrid.min.js"&#62;&#60;/script&#62;</p>
<p>&#60;script type="text/javascript"&#62;</p>
<p>&#160;&#160;&#160; jQuery(document).ready(function() {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#list").jqGrid({</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;Generador&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#39;json&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#39;GET&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;Nombre&#39;,&#39;DNI&#39;, &#39;Edad&#39;, &#39;Ocupacion&#39;,&#39;Salario&#39;],</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { index: &#39;Nombre&#39;, width: 150, align: &#39;left&#39; },</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { index: &#39;DNI&#39;, width: 150, align: &#39;left&#39;, sortable: false },</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { index: &#39;Edad&#39;, width: 80, align: &#39;center&#39; },</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { index: "Ocupacion", width: 120, align: &#39;left&#39;},<br />&#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; { index: "Salario", width: 120,editable:true, align: &#39;left&#39;}],</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: jQuery(&#39;#pager&#39;),</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 50,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [20, 50, 100],</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;Nombre&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#39;asc&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; imgpath: &#39;/css/images&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#39;Agenda personal&#39;,</p>
<p>&#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; width: 900</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
<p>&#160;&#160;&#160; }); </p>
<p>&#60;/script&#62;&#160;&#160; &#160;<br />&#60;/head&#62;<br />&#60;body&#62;<br />&#60;p&#62;Esto es una pagina de prueba de JQGrid con una ui de Cupertino&#60;/p&#62;<br />&#60;table id="list"&#62;&#60;/table&#62;</p>
<p>&#60;div id="pager"&#62;&#60;/div&#62;&#160;&#160; &#160;</p>
<p>&#60;/body&#62;<br />&#60;/html&#62;</p>
</p>
<p>This is the html</p>
]]></description>
        	        	<pubDate>Mon, 25 Jan 2010 11:05:56 +0200</pubDate>
        </item>
</channel>
</rss>