<?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: Negative RowNumbers</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers</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/negative-rownumbers/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>SimonL on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p17079</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p17079</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
</p>
<p>I spotted this post and hoped it would help me because I&#39;m having the same problem. But I&#39;m using version 3.6.4. I have several grids in my application and all but one are working correctly. They scroll correctly and pass the correct data back to the server.</p>
</p>
<p>I have all the grids set up to use the auto scrolling feature which calls back to the server for more data when you scroll down the grid. When the grid initially loads the data the server side routine that receives: page, rows, _search, sidx, sord, nd, filters as the query string receives page=1 which is correct. Then when I scroll passed the frist page (20 records) the value for page is set to 2, which is also correct. If I scroll further the value for page is 2 again, instead of 3.&#160;</p>
</p>
<p>all the grids in my application inherit defaults like so:</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $.jgrid.defaults = $.extend($.jgrid.defaults, {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#39;json&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#39;POST&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; imgpath: &#39;/Scripts/themes/ui-darkness/images&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jsonReader: {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; root: "Rows",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; page: "Page",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; total: "Total",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; records: "Records",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; repeatitems: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; userdata: "UserData",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; id: "Id"<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; autowidth: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; loadui: "block",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 20,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; //rowList: [10, 20, 30],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rownumbers: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; scroll: 1,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; multiselect: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: 400,<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; loadError: function(xhr, status, error) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (error !== "")<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert("Error loading data, invalid response from server. " + "(" + status + ")");<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; toolbar: [true, "top"],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortable: true,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; onSelectRow: function(rowid, status) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; RowId = rowid;<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; onSelectAll: function(aRowids, status) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; GALLERY_WEB.selectAll = status;<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; gridComplete: function() {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (GALLERY_WEB.selectAll) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rows = $(&#39;.entity_grid&#39;).jqGrid(&#39;getRowData&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;.entity_grid&#39;).jqGrid(&#39;resetSelection&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (var x = 0; x &#60; rows.length; x++) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;.entity_grid&#39;).jqGrid(&#39;setSelection&#39;, rows[x].rn);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#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;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var gridID = $(&#39;.entity_grid&#39;).attr(&#39;id&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;#cb_&#39; + gridID).attr(&#39;checked&#39;, true);<br />&#160;&#160;&#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;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
<p>And the grid that displays the incorrect behaviour is defined like so:</p>
</p>
<p>GALLERY_WEB.grid_def_Stock = {<br />&#160;&#160;&#160; url: &#39;GetListData/&#39;,<br />&#160;&#160;&#160; primaryKey: &#39;StockNumberID&#39;,<br />&#160;&#160;&#160; pager: "#pager",<br />&#160;&#160;&#160; toppager: true,<br />&#160;&#160;&#160; sortname: &#39;StockNumberID&#39;,<br />&#160;&#160;&#160; sortorder: "desc",<br />&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; caption: "Stock",<br />&#160;&#160;&#160; footerrow: true,<br />&#160;&#160;&#160; userDataOnFooter: true,<br />&#160;&#160;&#160; colNames: [<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ...... column names .......<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160; colModel: [<br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&#160; ...... column definitions .......</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ]</p>
<p>};</p>
<p>Have you any idea whats going wrong?</p>
</p>
<p>Thanks,</p>
<p>Simon</p>
]]></description>
        	        	<pubDate>Tue, 11 May 2010 19:14:11 +0300</pubDate>
        </item>
        <item>
        	<title>Marinos on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14054</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14054</guid>
        	        	<description><![CDATA[<p>Thank you very much, Tony!</p>
<p>The grid works now, even with less than 10 rows. <img class="spSmiley" style="margin:0" title="Smile" src="http://www.trirand.com/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
</p>
<p>When using the grid, I noticed that the zebra effect is not correct. I created a new topic for this. The grid configuration is unchanged:&#160;</p>
<p><a href="http://www.trirand.com/blog/?page_id=393/bugs/zebra-effect-incorrect-with-true-scrolling-on/#p14053" rel="nofollow" target="_blank"><a href="http://www.trirand.com/blog/?p" rel="nofollow">http://www.trirand.com/blog/?p</a>.....on/#p14053</a></p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 16:14:50 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14050</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14050</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks.</p>
<p>This problem is fixed, but in GitHub. In order to resolve currently set the rowNum parameter to value greater or equal to 10.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 13:30:39 +0200</pubDate>
        </item>
        <item>
        	<title>Marinos on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14047</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14047</guid>
        	        	<description><![CDATA[</p>
<p>The grid settings:</p>
<p>var gridSettings = {<br />url: &#39;/Users/List&#39;,<br />datatype: &#8220;json&#8221;,<br />altclass: &#39;alternateRow&#39;, <span> </span><span style="color: #c0c0c0;">//The class that is used for alternate rows. You can construct your own class and replace this value. This option is valid only if altRows options is set to true</span><br />altRows: true,<span style="color: #999999;"> //Set a zebra-striped grid</span><br />resizeclass: &#8220;resizable&#8221;,<span style="color: #c0c0c0;"> //Assigns a class to columns that are resizable so that we can show a resize handle only for ones that are resizable</span><br />loadtext: &#8220;Loading!!&#8221;, <span style="color: #c0c0c0;">//The text which appear when requesting and sorting data. This parameter is located in language file</span><br />loadui: &#8220;enable&#8221;, <span> </span><span style="color: #c0c0c0;">//This option controls what to do when an ajax operation is in progress.</span><br />multiselect: true,<span style="color: #c0c0c0;"> </span><span><span style="color: #c0c0c0;"> </span></span><span style="color: #c0c0c0;">//If this flag is set to true a multi selection of rows is enabled. A new column at left side is added. Can be used with any datatype option.</span><br />multiboxonly: false,<span> </span><span style="color: #c0c0c0;">//the multiselection is done only when the checkbox is clicked (Yahoo style). Clicking in any other row (suppose the checkbox is not clicked) deselects all rows and the current row is selected</span><br />rownumbers: false, <span> </span><span style="color: #c0c0c0;">//A</span><span><span style="color: #c0c0c0;"> </span></span><span style="color: #c0c0c0;">column is added to count the number of available rows</span><br />scroll: true,<br />colNames: [&#39;userid&#39;, &#39;Username&#39;, &#39;Student&#39;, &#39;Email&#39;],<br />colModel: [<br />{ name: &#39;Id&#39;, index: &#39;Id&#39;, width: 200, hidden: true },<br />{ name: &#39;UserName&#39;, index: &#39;UserName&#39;, width: 200 },<br />{ name: &#39;Name&#39;, index: &#39;Name&#39;, width: 200 },<br />{ name: &#39;Email&#39;, index: &#39;Email&#39;, width: 200, resizable: true }<br />],<br />sortable: true, <span> </span><span style="color: #c0c0c0;">//When enabled this option allow column reordering with mouse.</span><br />&#160;rowNum: 9,<br />height: 300,<br />autowidth: true, <span> </span><span style="color: #c0c0c0;">//The grid width is recalculated automatically to the width of the parent element.&#160;</span><br />forceFit: true, <span> </span><span style="color: #c0c0c0;">//The adjacent column (to the right) will resize so that the overall grid width is maintained</span><br />autoencode: true, <span> </span><span style="color: #c0c0c0;">//When set to true encodes (html encode) the incoming (from server) and posted data</span><span style="color: #c0c0c0;"> (from editing modules). By example &#60; will be converted to &#38;lt;</span><br />sortname: &#39;UserName&#39;, <span style="color: #c0c0c0;">//Initial sorting column</span><br />sortorder: &#8220;desc&#8221;, <span> </span><span style="color: #c0c0c0;">//Sorting order of default column</span></p>
<p>pager: true,<br />rowList: [5, 10, 20], <span> </span><span style="color: #c0c0c0;">//An array to construct a select box element in the pager in which we can change the number of the visible rows.&#160;</span><br />viewrecords: true, <span> </span><span style="color: #c0c0c0;">//defines whether we want to display the number of total records from the query in the</span><span style="color: #999999;"> pager bar</span><br />pgtext: &#8220;Zie {0} van {1}&#8221;, <span style="color: #c0c0c0;">//Show information about current page status. The first value is the current loaded page. The second value is the total number of pages</span><br />recordtext: &#8220;Rec {0} tot {1} van totaal {2}&#8221;, <span style="color: #c0c0c0;">//Represent information that can be shown in the pager.</span><br />contextMenu: [{name:&#39;Open&#39;,url:&#39;/Users/Edit/&#39;},{name:&#39;Tewerkstelling bewerken&#39;,url:&#39;&#39;},{name:&#39;Rol bewerken&#39;,url:&#39;&#39;}],<br />grid: $(&#8221;#test1&#8243;)<br />};</p></p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 12:29:21 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14040</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p14040</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Could you please post the grid configuration?</p>
<p>Thanks.</p>
<p>Best Regrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 11:41:08 +0200</pubDate>
        </item>
        <item>
        	<title>Marinos on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p13992</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p13992</guid>
        	        	<description><![CDATA[<p>Thanks for the quick reply.</p>
<p>I double checked the server settings. They seem to match the descriptions in&#160;/jqgridwiki/doku.php?id=wiki:retrieving_data.<br /> The following response data is communicated:</p>
<p>Page load, only the headers are shown, no data yet: <br /><span style="color: #999999;">Request:</span> _search=false&#38;nd=1263818383153&#38;rows=5&#38;page=1&#38;sidx=UserName&#38;sord=desc<br /><span style="color: #999999;">Response:</span> {&#8221;page&#8221;:1,&#8221;total&#8221;:0,&#8221;records&#8221;:0,&#8221;rows&#8221;:0}<br /><span style="color: #888888;">Text in the pager:</span> No records to show</p>
<p>After typing the search query with the first 5 rows:<br /><span style="color: #999999;">Request: </span>q=&#38;_search=false&#38;nd=1263818565548&#38;rows=5&#38;page=1&#38;sidx=UserName&#38;sord=desc<br /><span style="color: #999999;">Response</span>: {&#8221;page&#8221;:1,&#8221;total&#8221;:2,&#8221;records&#8221;:10,&#8221;rows&#8221;: .. [5 rows of data]<br /><span style="color: #888888;">Text in the pager:</span> Record 1 to 5 of total 10&#160;</p>
<p>Request after scrolling. Total of 15 rows are shown:<br /><span style="color: #999999;">Request:</span> q=&#38;_search=false&#38;nd=1263818791205&#38;rows=10&#38;page=1&#38;sidx=UserName&#38;sord=desc<br /><span style="color: #999999;">Response:</span>&#160;{&#8221;page&#8221;:1,&#8221;total&#8221;:2,&#8221;records&#8221;:10,&#8221;rows&#8221;:.. [10 rows of data]<br /><span style="color: #888888;">Text in the pager:</span> <strong>Record -4 to 10 of total 10</strong></p>
<p>The server returns the pagenumber which was requested in the querystring.<br />This jqGrid instance also has the following setting: .datatype=&#8221;json&#8221;<br />The database contains 10 records now.</p></p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 14:57:47 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p13851</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p13851</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Check your server response what page number return.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 13 Jan 2010 18:36:32 +0200</pubDate>
        </item>
        <item>
        	<title>Marinos on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p13791</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p13791</guid>
        	        	<description><![CDATA[<p>I have the same problem (version 3.6.2).</p>
<p>In my case, when I scroll to the next set of records (true scrolling is on), it says: View -4 &#8211; 9 of 9.<br />No error message so far.&#160;</p>
<p>The actual problem this causes is the error message &#39;Invalid argument&#39; in jquery.js.<br />The cause of this error message is line 682 in grid.base.js. The following statement is executed on this line:&#160;$(&#8221;&#62;div:first&#8221;,ts.grid.bDiv).css({height : height}).<br />The second &#39;height&#39; is a variable with value: &#8220;-160px&#8221;.</p>
<p>When you try to set a height with a negative value, the error &#39;Invalid argument&#39; pops up.<br />(Only Internet Explorer generates an error message, Firefox just shows a negative value)</p>
<p>My grid has the following parameters (and a few irrelevant ones):<br />scroll: true,<br />rowNum: 5,<br />height:80, (about three records fit on one screen)</p>
</p>
<p>The database contains 9 records.</p>
<p>Do you have any ideas on how to solve this?</p>
]]></description>
        	        	<pubDate>Tue, 12 Jan 2010 12:48:51 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11324</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11324</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Look at language file - recordtext, in your case replace (or pass it in grid as parameter)</p>
<p>recordtext: "View {0} - {1} of {2}",</p>
<p>with</p>
<p>recordtext: "View {2}",</p>
<p>Enjoy</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 30 Oct 2009 11:39:37 +0200</pubDate>
        </item>
        <item>
        	<title>Mark C on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11323</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11323</guid>
        	        	<description><![CDATA[<p>To be Honest, i really just need the bottom bar to say:&#160; Viewing X records, where X starts at 40521 and each time user presses a ket X becomes the recordcount as the function View 1 of 100 -&#160; 40512 is redundant in loading by scroller.</p>
<p>Is it this possible with a paramter or do i need to simply get the count and redo my own footer.</p>
</p>
<p>Regards</p>
<p>Mark C</p>
]]></description>
        	        	<pubDate>Fri, 30 Oct 2009 11:32:40 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11320</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11320</guid>
        	        	<description><![CDATA[<p>Hello</p>
<p>What you set rownum or rowNum &#8211; there is difference between these</p>
<p>Regards</p>
<p>Tony</p>
<p>P.S. The example is quite the same, but it works OK.</p>
]]></description>
        	        	<pubDate>Fri, 30 Oct 2009 11:29:51 +0200</pubDate>
        </item>
        <item>
        	<title>Mark C on Negative RowNumbers</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11319</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/negative-rownumbers#p11319</guid>
        	        	<description><![CDATA[<p>Using 3.6Beta, load on scroll feature with autosearch (same as bigset.php). 40521 records.</p>
<p>rownum=100</p>
<p>I get negative rownumbers and the view 1 to x is also negative when the result set is like 15 records.</p>
<p>rownum=30</p>
<p>same again but result set is 3 records or less.</p>
<p>I have checked all the start/count/limit/page/totalpages and they all look fine. Using example code. I did trun the pager on to check the page value and it does goto 0 when this happens.</p>
<p>Any ideas?</p>
<p>Regards</p>
<p>Mark C</p>
]]></description>
        	        	<pubDate>Fri, 30 Oct 2009 11:23:25 +0200</pubDate>
        </item>
</channel>
</rss>