<?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: My JQ Grid looks messy (pictures and code inside)</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/my-jq-grid-looks-messy-pictures-and-code-inside</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/my-jq-grid-looks-messy-pictures-and-code-inside/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>yonatann on My JQ Grid looks messy (pictures and code inside)</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/my-jq-grid-looks-messy-pictures-and-code-inside#p18267</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/my-jq-grid-looks-messy-pictures-and-code-inside#p18267</guid>
        	        	<description><![CDATA[<p>Hi,<br />I&#39;m using JQGrid to build a sharepoint web part (should that matter), the client <span style="text-decoration: underline;">browser is IE6</span>, I&#39;ve worked step by step with<br />Wiki documentation, everything works fine expect:<br />1. The grid headers and rows are not aligned (see image attached, the language is Hebrew)</p>
<p>2. The are no scroll bar on the side but some empty space.</p>
<p>Any idea why? Thanks in advanced.</p>
</p>
<p>Image:</p>
<p>[Image Can Not Be Found]</p>
<p>Code:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9625' value='Select Code' data-codeid='sfcode9625' /></p>
<div class='sfcode' id='sfcode9625'>function setJQGrid(data, gridName, scrollerName) {<br />&#160; $(&#34;#&#34; + gridName).jqGrid(<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#39;xmlstring&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datastr: data,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;×›×•×ª×¨×ª&#39;, &#39;×”×—×œ×˜×”&#39;, &#39;×”×¢×¨×•×ª&#39;, &#39;×ž×•×§×¦×” ×œ-&#39;, &#39;×”×©×ª× ×”&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;taskTitle&#39;, index: &#39;taskTitle&#39;, align: &#39;right&#39;, fixed: true },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;taskDecision&#39;, index: &#39;taskDecision&#39;, sortable: false, align: &#39;right&#39;, fixed: true },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;taskComment&#39;, index: &#39;taskComment&#39;, sortable: false, align: &#39;right&#39;, fixed: true },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;taskAssignedTo&#39;, index: &#39;taskAssignedTo&#39;, align: &#39;right&#39;, fixed: true },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;taskModified&#39;, index: &#39;taskModified&#39;, align: &#39;right&#39;, fixed: true }<br />&#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; pager: $(&#34;#&#34; + scrollerName),<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [10, 20, 30],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; async: false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlReader: {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; root: &#34;ArrayOfChangeRequestListItemInfo&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; row: &#34;changeRequestListItemInfo&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; page: &#34;changeRequestListItemInfos&#62;page&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; total: &#34;changeRequestListItemInfos&#62;total&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; records: &#34;changeRequestListItemInfos&#62;records&#34;,<br />&#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; id: &#34;id&#34;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;Id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#34;desc&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; imgPath: &#39;images&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
<p>}</p>
</div>
]]></description>
        	        	<pubDate>Tue, 29 Jun 2010 13:21:03 +0300</pubDate>
        </item>
</channel>
</rss>