<?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: ignoreCase BUG</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug</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/ignorecase-bug/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>OlegK on ignoreCase BUG</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug#p20399</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug#p20399</guid>
        	        	<description><![CDATA[<p>Hello!</p>
<p>About one&#160;month&#160;ago I wrote about the bug with the sorting of interegr (see /blog/?page_id=393/bugs/bug-in-sorting-of-local-int-data/). The bug is already fixed of the <a href="http://github.com/tonytomov/jqGrid/blob/master/js/grid.base.js#L264" target="_blank">github</a>. So If you download from <a href="http://github.com/tonytomov/jqGrid/" target="_blank">github</a> and use the developer version of jqGrid you should not have the error. I hope that jqGrid 3.8.1 will be also soon published but it&#39;s depend not from my.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Thu, 21 Oct 2010 16:03:36 +0300</pubDate>
        </item>
        <item>
        	<title>A415Hz on ignoreCase BUG</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug#p20379</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug#p20379</guid>
        	        	<description><![CDATA[<p>Same here, when I try to sort the column with IgnoreCase: true and the column&#39;s sorttype is set to &#39;int&#39;, jqgrid hangs on "loading...", but there is javascript error, as I think it&#39;s trying to call toLowerCase function on integers, while it&#39;s expected to have strings.</p>
]]></description>
        	        	<pubDate>Wed, 20 Oct 2010 18:20:54 +0300</pubDate>
        </item>
        <item>
        	<title>prorider1 on ignoreCase BUG</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug#p20351</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/ignorecase-bug#p20351</guid>
        	        	<description><![CDATA[<p>When the ignoreCase option in the grid is set to <strong>true</strong> sorting with sorttype: &#39;date&#39; and &#39;int&#39; in colModel does not work.</p>
<p>For example:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit749' value='Select Code' data-codeid='sfcode749' /></p>
<div class='sfcode' id='sfcode749'>jQuery(&#39;#jqGridTable&#39;).jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#39;json&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;get-data&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#39;GET&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: 850,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#34;100%&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#39;id&#39;,&#39;name&#39;, &#39;price&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel:[&#160; {name:&#39;id&#39;,index:&#39;id&#39;, width:15, sorttype=&#39;int&#39;},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;name&#39;,index:&#39;name&#39;, width:150},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;price&#39;,index:&#39;price&#39;, width:30}],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#34;Subskrypcje&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#39;asc&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:20,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList:[20,50,100],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; loadonce: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ignoreCase: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#ptoolbar&#39;});</div>
<p>And when i try to sort or filter the content the following error accurs:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit7938' value='Select Code' data-codeid='sfcode7938' /></p>
<div class='sfcode' id='sfcode7938'>n.toLowerCase is not a function</div></p>
]]></description>
        	        	<pubDate>Mon, 18 Oct 2010 14:16:24 +0300</pubDate>
        </item>
</channel>
</rss>