<?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: heading/data columns don't match</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match</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/bugs/headingdata-columns-dont-match/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>donb on heading/data columns don't match</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5343</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5343</guid>
        	        	<description><![CDATA[<p>Never fails - give up and ask for help and the answer presents itself.&#160; I compared my grid to the demo and determined the class &#39;scroll&#39; was the missing piece.</p>
<p>Further, I discovered that if my grid/pager&#160;are defined by a class instead of an id, that does not work.&#160; So I had to declare my grid with</p>
<p>id=&#39;abc&#39; class=&#39;scroll&#39;</p>
<p>instead of</p>
<p>&#39;class abc scroll&#39;</p>
<p>I expected the latter would work fine, but does not.</p>
]]></description>
        	        	<pubDate>Fri, 13 Mar 2009 15:53:21 +0200</pubDate>
        </item>
        <item>
        	<title>donb on heading/data columns don't match</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5342</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5342</guid>
        	        	<description><![CDATA[<p>It just occurred to me when I revisted the demo pages, that my &#39;zebra stripe&#39; and the pager background is missing (&#39;sand&#39; theme).</p>
<p>I reloaded the themes folders from the ZIP file, but the grid looks the same.&#160;</p>
<p>This must be a clue - like the theme is wrong?</p>
]]></description>
        	        	<pubDate>Fri, 13 Mar 2009 15:41:57 +0200</pubDate>
        </item>
        <item>
        	<title>donb on heading/data columns don't match</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5341</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5341</guid>
        	        	<description><![CDATA[<p>By the way, this is the grid code:</p>
</p>
<p>&#160;$(thisGrid).jqGrid(<br />&#160;&#160;&#160;{ <br />&#160;&#160;&#160;<a href="&#39;prospect_get.php&#39;" target="_blank">url:&#39;prospect_get.php&#39;</a>,<br />&#160;&#160;&#160;datatype: "json", <br />&#160;&#160;&#160;colNames:[ &#39;Pid&#39;, &#39;Area&#39;, &#39;City&#39;, &#39;Update&#39;, &#39;rrif&#39;, &#39;Min $&#39;, &#39;Max $&#39;, &#39;bedroom&#39;, &#39;Bath&#39; ], <br />&#160;&#160;&#160;colModel:[ {name:&#39;pid&#39;, index:&#39;pid&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;area&#39;, index:&#39;area&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;City&#39;, index:&#39;indicated_city&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;Update&#39;,index:&#39;updated&#39;, formatter: &#39;date&#39;, formatoptions: {srcformat: &#39;Y-m-d&#39;,newformat: &#39;m/d/Y&#39;}}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;rrif&#39;, index:&#39;rrif&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;price_from&#39;, index:&#39;price_from&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;price_to&#39;,index:&#39;price_to&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;bedroom&#39;, index:&#39;bedroom&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;bath&#39;, index:&#39;bath&#39;}<br />&#160;&#160;&#160;&#160;&#160; ], <br />&#160;&#160;&#160;&#160;&#160; rowNum:25, <br />&#160;&#160;&#160;&#160;&#160; imgpath: gridimgpath, <br />&#160;&#160;&#160;&#160;&#160; sortname: &#39;updated&#39;, <br />&#160;&#160;&#160;&#160;&#160; viewrecords: true, <br />&#160;&#160;&#160;&#160;&#160; sortorder: "desc", <br />&#160;&#160;&#160;&#160;&#160; multiselect: false, <br />&#160;&#160;&#160;&#160;&#160; loadonce: false,<br />&#160;&#160;&#160;&#160;&#160; forceFit: true,<br />&#160;&#160;&#160;&#160;&#160; expandColumn: &#39;bath&#39;,<br />&#160;&#160;&#160;&#160;&#160; width: 1000,<br />&#160;&#160;&#160;&#160;&#160; height: 400,<br />&#160;&#160;&#160;&#160;&#160; hidegrid: false,<br />&#160;&#160;&#160;&#160;&#160; recordtext: &#39;Prospects&#39;,<br />&#160;&#160;&#160;&#160;&#160; caption: gridtitle,<br />&#160;&#160;&#160;&#160;&#160; pager: $(".prospect-pager")<br />&#160;&#160;});<br />&#160;}</p>
]]></description>
        	        	<pubDate>Fri, 13 Mar 2009 15:19:10 +0200</pubDate>
        </item>
        <item>
        	<title>donb on heading/data columns don't match</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5338</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/headingdata-columns-dont-match#p5338</guid>
        	        	<description><![CDATA[<p>This is something I&#39;ve not seen before.&#160; A new grid/page I created refuses to align the heading with the data rows below it:</p>
</p>
<p><a href="http://gotodon.net/test/prospects.php.html" target="_blank"><a href="http://gotodon.net/test/prospe" rel="nofollow">http://gotodon.net/test/prospe</a>.....s.php.html</a></p>
</p>
<p>That&#39;s a &#39;static&#39; look at the page (not able at this time to setup and load the associated database for you to see it live.</p>
<p>This is my first shot at a 3.4.x grid, so maybe I&#39;ve missed a new option or otherwise configured something wrong?&#160;</p>
<p>Only in firefox does it look wrong.&#160; IE is just fine.</p>
]]></description>
        	        	<pubDate>Fri, 13 Mar 2009 15:08:10 +0200</pubDate>
        </item>
</channel>
</rss>