<?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: Header and body are not aligned</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned</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/header-and-body-are-not-aligned/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Ron on Header and body are not aligned</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p9031</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p9031</guid>
        	        	<description><![CDATA[<p>I found the problem. My XML was missing one column. Odd that it didn't report some type of error.</p>
]]></description>
        	        	<pubDate>Fri, 28 Aug 2009 17:46:48 +0300</pubDate>
        </item>
        <item>
        	<title>Ron on Header and body are not aligned</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p9019</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p9019</guid>
        	        	<description><![CDATA[<p><a href="http://lh3.ggpht.com/_YjsM2WoBZ4w/SpgJ5WalipI/AAAAAAAAAXs/G1jNfJYf_Aw/s800/ScreenHunter_01%20Aug.%2028%2009.41.gif"><img src="http://lh3.ggpht.com/_YjsM2WoBZ4w/SpgJ5WalipI/AAAAAAAAAXs/G1jNfJYf_Aw/s800/ScreenHunter_01%20Aug.%2028%2009.41.gif" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a>[Image Can Not Be Found]</p>
<p>I have the same problem. I&#39;m using jqGrid 3.5.2 and jquery-ui 1.7.2. I&#39;m a newbie so maybe it is obvious but I&#39;ve looked around and can&#39;t figure it out.</p>
</p>
<p>Here is my code,</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9313' value='Select Code' data-codeid='sfcode9313' /></p>
<div class='sfcode' id='sfcode9313'>&#160;&#160;&#160;&#160; $("#list").jqGrid({<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;ts.php&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;xml&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; mtype: &#39;GET&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;Name&#39;, &#39;Website&#39;,&#39;Price&#39;,&#39;Pay Timing&#39;,&#39;Price Guarantee&#39;, &#39;Privacy Policy&#39;],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel :[ <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;name&#39;, index:&#39;name&#39;, width:350}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;web_site&#39;, index:&#39;web_site&#39;, width:300, formatter:&#39;showlink&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;price&#39;, index:&#39;price&#39;, formatter:&#39;currency&#39;, width:100, align:&#39;right&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;pay_timing&#39;, index:&#39;pay_timing&#39;, width:100}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;price_g&#39;, index:&#39;low_price_guarantee&#39;, width:100},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;privacy_policy&#39;, index:&#39;privacy_policy&#39;, width:100} <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: &#39;#pager&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:25,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; scroll: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#39;name&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: &#39;asc&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; multiselect: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Traffic Schools&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //width: 728,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //height: 500,<br />&#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; //viewrecords: true<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160; });</div>
</p>
<p>[Image Can Not Be Found]</p>
]]></description>
        	        	<pubDate>Fri, 28 Aug 2009 11:47:46 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Header and body are not aligned</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p7365</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p7365</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>This is one of the bugs in 3.4 version. Also I recommend you to switch to 3.5, where this behaviour is corrected.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 21 Jun 2009 05:49:00 +0300</pubDate>
        </item>
        <item>
        	<title>Corrado on Header and body are not aligned</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p7314</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/header-and-body-are-not-aligned#p7314</guid>
        	        	<description><![CDATA[<p>Hi,<br />I have a large table which has horizontal and vertical scrollbars. The table&#39;s header and body are not aligned when I scroll to the end of the table as you can see by the following image:</p>
<p><a href="http://www.targetcart.com/img/alignment.jpg"><img src="http://www.targetcart.com/img/alignment.jpg" width="100"  style="vertical-align: middle;" class="spUserImage" alt="Alignment" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class=" sfmouseother" alt="Image Enlarger" /></a></p>
<p>I have the correct alignment when:</p>
<p>- I filter my rows reducing the height of the table, this makes the vertical scroolbar disappear<br />- or I add padding-right:18px to the last th cell</p>
<p>What can I do to solve this problem?</p>
<p>Thanks.</p>
]]></description>
        	        	<pubDate>Thu, 18 Jun 2009 02:18:57 +0300</pubDate>
        </item>
</channel>
</rss>