<?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 - shows less than it should</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should</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-shows-less-than-it-should/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>kat15pl on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28205</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28205</guid>
        	        	<description><![CDATA[<p>Ok, I see that I get 7 rows in response.</p>
<p>In JQGrid1_DataRequesting(object sender, Trirand.Web.UI.WebControls.JQGridDataRequestEventArgs e) function in debug mode I get 9 rows.</p>
</p>
<p>In this function I have:</p>
<p>&#160; &#160; &#160; &#160; &#160; &#160; JQGrid1.DataSource = dt;</p>
<p>&#160; &#160; &#160; &#160; &#160; &#160; JQGrid1.DataBind();</p>
</p>
<p>dt = DataTable with 9 rows</p>
<p>OK. I found my error. Function GetRowCount returns 7 not 9 🙂</p>
<p>Now it works:)</p>
</p>
<p>Thanks anyone:)</p>
]]></description>
        	        	<pubDate>Fri, 01 Feb 2013 12:28:40 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28202</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28202</guid>
        	        	<description><![CDATA[<p>I am sure that your server returns either JSON or XML because it&#39;s only two formats which supports jqGrid. Which value has <strong>datatype</strong> parameter of jqGrid which you use? If you don&#39;t specify any <strong>datatype</strong>&#160;parameter then default value "xml" will be used. Do you tried to use any Tools to catch HTTP trafic like I described before? If you use Windows computer then you have Internet Explorer. If you press F12 in IE the Developer Tools will be started. You can choose "Network" tab and click "Start capturing" button. Developer Tools will catch all HTTP requests and responses and you can examine it.</p>
]]></description>
        	        	<pubDate>Fri, 01 Feb 2013 12:09:59 +0200</pubDate>
        </item>
        <item>
        	<title>kat15pl on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28201</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28201</guid>
        	        	<description><![CDATA[<p>Thanks for reply,</p>
<p>Ok, my english is bad:)</p>
<p>I don&#39;t use json, I get rows by (C# code):</p>
<p>DataTable dt = module.Search(pageSize, startIndex, orderByColumn, searchExpression);</p>
<p>This function makes query string and return rows.</p>
</p>
<p>Like I said the same schema works in other part of site. I thought it could be by polish letters, but when I deleted them it doesn&#39;t improve.</p></p>
]]></description>
        	        	<pubDate>Fri, 01 Feb 2013 11:59:21 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28200</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28200</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>jqGrid is pure JavaScript solution. So what you can do is to use <a href="http://www.fiddler2.com/Fiddler2/version.asp" target="_blank">Fiddler</a>, Firebug, Developer Tools of IE or Chrome or any other tool to catch the exact JSON response of the server. If you save the JSON response in the file with the name like "test.json" you can use <strong>url: "test.json"</strong> to reproduce the problem without you server environment. You should just provide the HTML page with the JavaScript code which you use. If you see that the problem is do on the server side then you need debug it yourself because it has no relation with jqGrid.</p>
<p>By the way Fiddler works as HTTP proxy. So using <a href="http://www.fiddler2.com/Fiddler2/version.asp" target="_blank">Fiddler</a> one can catch any HTTP trafic in any environmat with any servers and then having the traces one can use Fiddler in autoresponse mode. So the fiddler will answer on the requests with the previously saved responses without having the server environment.</p>
<p>In <a href="http://stackoverflow.com/a/9349688/315935" target="_blank">the answer</a>&#160;you can find and download an example of ASP.NET code which works with jqGrid without any problems.&#160;</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Fri, 01 Feb 2013 11:50:37 +0200</pubDate>
        </item>
        <item>
        	<title>kat15pl on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28198</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28198</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>Thanks for replying.</p>
<p>Firstly I think I must say that I&#39;m writing in asp.net.</p>
<p>I read DB directly from SQL (using SqlConnection). The same method in other part of my system works perfectly. Only in this part it shows only 7, not 10 (it read from DB 10 rows, which I&#39;m sure because I debug my site). I can search by "hidden" rows, but always display 7.</p>
</p>
<p>BTW. Maximum row page is set to 25.</p></p>
]]></description>
        	        	<pubDate>Fri, 01 Feb 2013 11:36:18 +0200</pubDate>
        </item>
        <item>
        	<title>tony on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28190</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28190</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>How do you read the database?</p>
<p>Do you use JSON or XML,</p>
<p>Do you have configured the readers correct.</p>
<p>No answer will be,&#160; if your description is not approved with a test case.</p>
</p>
<p>Regards</p></p>
]]></description>
        	        	<pubDate>Thu, 31 Jan 2013 22:20:51 +0200</pubDate>
        </item>
        <item>
        	<title>kat15pl on JqGrid - shows less than it should</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28182</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-shows-less-than-it-should#p28182</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I&#39;m reading from database about 10 rows, but JQGrid displays me only 7 (I have 1 page, and I have "View 1 - 7 of 7"). I can search by missing rows, or sorting but it always display 7 rows:( . In other place of site it is ok (it displays about 40 rows, which is properly)</p>
<p>Any suggestion?</p>
</p>
<p>BTW. Sorry 4 my english</p>
]]></description>
        	        	<pubDate>Thu, 31 Jan 2013 12:00:59 +0200</pubDate>
        </item>
</channel>
</rss>