<?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 not displaying any records</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-not-displaying-any-records</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-not-displaying-any-records/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on jqGrid not displaying any records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-not-displaying-any-records#p30813</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-not-displaying-any-records#p30813</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Please look at your server response. Seee <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data" target="_blank">documentation </a></p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Tue, 08 Jul 2014 10:52:31 +0300</pubDate>
        </item>
        <item>
        	<title>bkoubik on jqGrid not displaying any records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-not-displaying-any-records#p30802</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-not-displaying-any-records#p30802</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>Â </p>
<p>my grid persists empty.</p>
<p>I donÂ´t know why - what must i change?</p>
<p>Tanks</p>
<p>Here is my code:</p>
<p>Â &#60;!DOCTYPE html&#62;<br />
&#60;html&#62;<br />
&#60;head&#62;<br />
&#60;meta charset="ISO-8859-1"&#62;<br />
&#60;title&#62;Insert title here&#60;/title&#62;<br />
&#60;link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"&#62;<br />
&#60;link rel="stylesheet" href="jqgrid/css/ui.jqgrid.css"&#62;</p>
<p>&#60;script type='text/javascript' src='//cdnjs.cloudflare.com/ajax/libs/jquery-ajaxtransport-xdomainrequest/1.0.0/jquery.xdomainrequest.min.js'&#62;&#60;/script&#62;</p>
<p>&#60;script src="//code.jquery.com/jquery-1.10.2.js"&#62;&#60;/script&#62;<br />
&#60;script src="jqgrid/js/grid.locale-de.js"&#62;&#60;/script&#62;<br />
&#60;script src="jqgrid/js/jquery.jqGrid.min.js"&#62;&#60;/script&#62;</p>
<p>&#60;script type="text/javascript"&#62;<br />
$(function () {<br />
Â Â  Â $("#list").jqGrid({<br />
Â Â  Â Â Â Â  url: 'http://www.iNorthwind.com/Service1.svc/getOrdersForCustomer/BERGS',<br />
Â Â  Â Â Â Â  contentType: "application/json",<br />
Â Â  Â Â Â Â  datatype: "json",<br />
Â Â  Â Â Â Â  jsonReader: {<br />
Â Â  Â Â Â Â Â Â Â Â  root: "GetOrdersForCustomerResult",<br />
Â Â  Â Â Â Â Â Â Â Â  id: "OrderID",<br />
Â Â  Â Â Â Â Â Â Â Â  repeatitems: false<br />
Â Â  Â Â Â Â  },<br />
Â Â  Â Â Â Â  mtype: "GET",<br />
Â Â  Â Â Â Â  colNames: ["ID", "Date", "ShipName", "ShipAddress", "ShipCity", "ShippedDate"],<br />
Â Â  Â Â Â Â  colModel: [<br />
Â Â  Â Â Â Â Â Â Â Â  { name: "OrderID", width: 80, align: "center" },<br />
Â Â  Â Â Â Â Â Â Â Â  { name: "OrderDate", width: 90, align: "center" },<br />
Â Â  Â Â Â Â Â Â Â Â  { name: "ShipName", width: 250 },<br />
Â Â  Â Â Â Â Â Â Â Â  { name: "ShipAddress", width: 250 },<br />
Â Â  Â Â Â Â Â Â Â Â  { name: "ShipCity", width: 95 },<br />
Â Â  Â Â Â Â Â Â Â Â  { name: "ShippedDate", width: 95 },<br />
Â Â  Â Â Â Â  ],<br />
Â Â  Â Â Â Â  pager: "#pager",<br />
Â Â  Â Â Â Â  height: 'auto',<br />
Â Â  Â Â Â Â  rowNum: 8,<br />
Â Â  Â Â Â Â  rowList: [8, 16, 24],<br />
Â Â  Â Â Â Â  loadonce: true,<br />
Â Â  Â Â Â Â  sortname: "OrderID",<br />
Â Â  Â Â Â Â  sortorder: "desc",<br />
Â Â  Â Â Â Â  viewrecords: true,<br />
Â Â  Â Â Â Â  gridview: true,<br />
Â Â  Â Â Â Â  ignoreCase: true,<br />
Â Â  Â Â Â Â  autoencode: true,<br />
Â Â  Â Â Â Â  caption: "Northwind orders"<br />
Â Â  Â });<br />
});<br />
&#60;/script&#62;<br />
&#60;/head&#62;<br />
&#60;body&#62;<br />
Â Â Â  &#60;table id="list"&#62;&#60;tr&#62;&#60;td&#62;&#60;/td&#62;&#60;/tr&#62;&#60;/table&#62;<br />
Â Â Â  &#60;div id="pager"&#62;&#60;/div&#62;<br />
&#60;/body&#62;<br />
&#60;/html&#62;</p>
<p>Insert title here</p>
<p>// </p>
<table id="list">
<tbody>
<tr>
<td>Â </td>
</tr>
</tbody>
</table>
<div>Â </div>
]]></description>
        	        	<pubDate>Wed, 02 Jul 2014 01:56:13 +0300</pubDate>
        </item>
</channel>
</rss>