<?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: Length of colNames colModel!</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel</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/length-of-colnames-colmodel/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>sirshurf on Length of colNames colModel!</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21298</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21298</guid>
        	        	<description><![CDATA[<p>I will try that, if I would have the time.</p>
</p>
<p>But currently since it&#39;s not working I have switched to 1.4.2 which is working ok.</p>
]]></description>
        	        	<pubDate>Wed, 15 Dec 2010 13:51:16 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Length of colNames colModel!</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21295</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21295</guid>
        	        	<description><![CDATA[<p>You use wrong encoding for arrays. Instead of</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9556' value='Select Code' data-codeid='sfcode9556' /></p>
<div class='sfcode' id='sfcode9556'>&#34;rowList&#34;:{&#34;0&#34;:20, &#34;1&#34;:40, &#34;2&#34;:60, &#34;3&#34;:80, &#34;4&#34;:100}</div>
<p>and</p>
<p><input type='button' class='sfcodeselect' name='sfselectit7496' value='Select Code' data-codeid='sfcode7496' /></p>
<div class='sfcode' id='sfcode7496'>&#34;colModel&#34;:{&#34;0&#34;:{&#34;label&#34;:&#34;bred8&#34;, &#34;name&#34;:&#34;qwe8&#34;}}</div>
<p>you should use arrays instead:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3685' value='Select Code' data-codeid='sfcode3685' /></p>
<div class='sfcode' id='sfcode3685'>&#34;rowList&#34;:[20, 40, 60, 80, 100]</div>
<p>and</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9389' value='Select Code' data-codeid='sfcode9389' /></p>
<div class='sfcode' id='sfcode9389'>&#34;colModel&#34;:[{&#34;label&#34;:&#34;bred8&#34;, &#34;name&#34;:&#34;qwe8&#34;}]</div>
<p>Moreover parameter "pager":"tgrff_pager" is also wrong. You mean probably "pager":"#tgrff_pager". I recommend you to use the last version of jQuery (currently 1.4.4) because it has pertormance improvemennt in working with CSS, which is relevant for jqGrid.</p>
<p>Best regards<br />Oleg</p>
]]></description>
        	        	<pubDate>Wed, 15 Dec 2010 12:50:41 +0200</pubDate>
        </item>
        <item>
        	<title>sirshurf on Length of colNames colModel!</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21291</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21291</guid>
        	        	<description><![CDATA[<p>Lowered jQuery to 1.4.2, started to work...</p>
<p>:(((</p>
<p>the UI is left on 1.8.6</p>
</p>
<p>Using Google CDN</p>
]]></description>
        	        	<pubDate>Wed, 15 Dec 2010 10:28:36 +0200</pubDate>
        </item>
        <item>
        	<title>sirshurf on Length of colNames colModel!</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21290</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/length-of-colnames-colmodel#p21290</guid>
        	        	<description><![CDATA[<p>I am getting nuts...</p>
</p>
<p>Here is my Code:</p>
<pre id="line15"><p><input type='button' class='sfcodeselect' name='sfselectit2607' value='Select Code' data-codeid='sfcode2607' /></p><div class='sfcode' id='sfcode2607'>$(document).ready(function() {<br /> $(&#34;#tgrff&#34;).jqGrid({&#34;url&#34;:&#34;/invoice/index2&#34;, &#34;datatype&#34;:&#34;json&#34;, &#34;mtype&#34;:&#34;POST&#34;, &#34;viewrecords&#34;:true, <br />      &#34;colModel&#34;:{&#34;0&#34;:{&#34;label&#34;:&#34;bred8&#34;, &#34;name&#34;:&#34;qwe8&#34;}}, <br />      &#34;autowidth&#34;:true, &#34;height&#34;:&#34;400px&#34;, &#34;rowNum&#34;:20, <br />      &#34;rowList&#34;:{&#34;0&#34;:20, &#34;1&#34;:40, &#34;2&#34;:60, &#34;3&#34;:80, &#34;4&#34;:100}, <br />      &#34;caption&#34;:&#34;Tgrff&#34;, &#34;postData&#34;:{&#34;grid&#34;:&#34;tgrff&#34;}, &#34;pager&#34;:&#34;tgrff_pager&#34;});<br />$(&#34;#tgrff&#34;).navGrid(&#34;#tgrff_pager&#34;,{&#34;edit&#34;:false, &#34;add&#34;:false, &#34;del&#34;:false}, {}, {}, {});<br />});</div><br /></pre>
</p>
<p>I am getting: Length of colNames &#60;&#62; colModel!</p>
<p>Using JQuery 1.4.4, UI 1.8.6, jQGRId 3.8.2</p>
<p>Had the same problem with the previouse to.</p>
<p>Why?</p>
]]></description>
        	        	<pubDate>Wed, 15 Dec 2010 10:23:17 +0200</pubDate>
        </item>
</channel>
</rss>