<?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: Horizontal Scroll when Shrinktofit and RowNumbers set to True</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true</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/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Horizontal Scroll when Shrinktofit and RowNumbers set to True</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true#p18929</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true#p18929</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks for letting us know about this.</p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 03 Aug 2010 11:06:26 +0300</pubDate>
        </item>
        <item>
        	<title>aaron on Horizontal Scroll when Shrinktofit and RowNumbers set to True</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true#p18821</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true#p18821</guid>
        	        	<description><![CDATA[<p>Found the issue while trying to fix something else that I thought was a bug. Apparently JQGrid does not appreciate having the css "border-collapse: collapse" on tables. If you&#39;re having weird display issues make sure that your table is set to "border-collapse:seprate"</p>
]]></description>
        	        	<pubDate>Mon, 26 Jul 2010 20:48:05 +0300</pubDate>
        </item>
        <item>
        	<title>aaron on Horizontal Scroll when Shrinktofit and RowNumbers set to True</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true#p18820</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/horizontal-scroll-when-shrinktofit-and-rownumbers-set-to-true#p18820</guid>
        	        	<description><![CDATA[<p>The width of my grid is 848px. The sum of the column widths is only 570px. When I set ShrinkToFit and rownumbers to True with a width of 30px there is a horizontal scrollbar on the grid but it only scrolls for about 3 px. When I turn rownumbers off, there is no horizontal scrollbar. It doesn&#39;t look like Shrinktofit is taking the rownumbers column into account properly. The properties are set as follows:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1896' value='Select Code' data-codeid='sfcode1896' /></p>
<div class='sfcode' id='sfcode1896'>jQuery(&#34;#searchResultsTable&#34;).jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; scroll: 0,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;searchresults.aspx?query=yes&#38;search=&#39; + search,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#34;xml&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: 848,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;Transformer ID&#39;, &#39;Max KWH&#39;, &#39;Start Date&#39;, &#39;End Date&#39;, &#39;Load Rating&#39;, &#39;Percent Loaded&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [{ name: &#39;TransformerId&#39;, index: &#39;TransformerId&#39;, width:90 }, { name: &#39;KWH&#39;, index: &#39;KWH&#39;, width: 70 }, { name: &#39;Start&#39;, index: &#39;Start&#39;, width: 120 }, { name: &#39;End&#39;, index: &#39;End&#39;, width: 120 }, { name: &#39;Rating&#39;, index: &#39;Rating&#39;, width: 80 }, { name: &#39;Percent&#39;, index: &#39;Percent&#39;, width: 90,formatter:&#39;number&#39;}],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 10, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#34;GET&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rownumbers: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rownumWidth: 30,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; shrinkToFit: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; gridview: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#searchResultsTablePager&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;TransformerId&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#34;asc&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#34;Transformer Loading Information Overview&#34;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160; });</div>
<p>Just wanted to point that out. I&#39;m not sure if I&#39;m doing something stupid or not.</p>
]]></description>
        	        	<pubDate>Mon, 26 Jul 2010 20:18:31 +0300</pubDate>
        </item>
</channel>
</rss>