<?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: jqGrid 4.4.4</title>
	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4</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/releases/jqgrid-4-4-4/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>zatomant on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28734</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28734</guid>
        	        	<description><![CDATA[</p>
<p><strong>tony, OlegK:</strong> I solved the problem. worked at jqGrid 4.4.5, jQuery 1.9.1 and php 5.2. now</p>
</p>
<p><strong>Problem</strong>: browser must fill table from remote json dataset. jqGrid 4.4.5 and jQuery 1.9.1. In IE 8.0 work fine, FF 20.0 - not work.</p>
<p>Page with jqGrid-table have line:</p>
<div id="sfcode5792" class="sfcode">&#60;!DOCTYPE html&#62;</div>
<p><input type='button' class='sfcodeselect' name='sfselectit6514' value='Select Code' data-codeid='sfcode6514' /></p>
<div class='sfcode' id='sfcode6514'>&#60;meta http-equiv=&#34;X-UA-Compatible&#34; content=&#34;IE=edge&#34; /&#62;</div>
<p>Its very important - this must tell to browser toggle Quirck mode to Standard.</p>
</p>
<p>And IE 8.0 to see this line switching to Standard, but not FF.</p>
<p>Open FireBug, open page and debug network activity. First line from site must be</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3086' value='Select Code' data-codeid='sfcode3086' /></p>
<div class='sfcode' id='sfcode3086'>&#60;!DOCTYPE html&#62;</div>
<p>, but NOT - i have ï»¿</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1570' value='Select Code' data-codeid='sfcode1570' /></p>
<div class='sfcode' id='sfcode1570'>Ð¿&#187;Ñ—ï»¿&#60;!DOCTYPE html&#62;</div>
<p>WTF? Its php bug! Php incorrect worked with phpfile have UTF-8(wBOM) codepage.</p>
<p>This symbol before &#60;!DOCTYPE html&#62; prevented FF switching to Standard mode and FF still stay at Quirck mode....</p>
</p>
<p><strong>Solution</strong>: resave all php files as UTF-8 <strong>without </strong>BOM codepage.</p>
]]></description>
        	        	<pubDate>Mon, 06 May 2013 18:06:13 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28604</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28604</guid>
        	        	<description><![CDATA[<p>Hello Oleg,</p>
<p>I plan to release new version this week maybe after day or two.</p>
</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 08 Apr 2013 12:26:09 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28591</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28591</guid>
        	        	<description><![CDATA[<p>Hello Tony,</p>
<p>what do you think about publishing of current version of jqGrid from github as version 4.4.5?</p>
<p>Regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Fri, 05 Apr 2013 11:55:35 +0300</pubDate>
        </item>
        <item>
        	<title>cdkeito on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28589</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28589</guid>
        	        	<description><![CDATA[<p>For the collapse problem, something like this colud help:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5972' value='Select Code' data-codeid='sfcode5972' /></p>
<div class='sfcode' id='sfcode5972'>
<p>while(r) {<br /> &#160;&#160; <br /> /******************************* add ****************************/</p>
<p> &#160;&#160; var dobreak = false;<br /> &#160;&#160; if($(r).hasClass(&#34;jqfoot&#34;)) { <br />&#160;&#160;&#160;&#160;&#160;&#160; var lv = parseInt($(r).attr(&#34;jqfootlevel&#34;),10);<br />&#160;&#160;&#160;&#160;&#160;&#160; if(lv&#60;num) { dobreak = true; }<br />&#160;&#160; } else {<br />&#160;&#160;&#160;&#160;&#160;&#160; var numcur = 0 + num;<br />&#160;&#160;&#160;&#160;&#160;&#160; while(numcur&#62;=0) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if( $(r).hasClass(uid+&#34;_&#34;+String(numcur) ) ) { dobreak = true; break; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; numcur&#8211;;<br />&#160;&#160;&#160;&#160;&#160;&#160; } &#160;<br />&#160;&#160; }<br />&#160;&#160; if(dobreak==true) { break;} </p>
<p> /****************************************************************/</p>
<p> &#160;&#160;&#160; $(r).hide();<br /> &#160;&#160;&#160; r = r.nextSibling;<br /> }</p>
</div>
<p>Best regards</p>
<p>cdkeito</p></p>
]]></description>
        	        	<pubDate>Fri, 05 Apr 2013 00:42:52 +0300</pubDate>
        </item>
        <item>
        	<title>cdkeito on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28588</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28588</guid>
        	        	<description><![CDATA[<div id="commentbody-80188">There is a problem here:</p>
<p>on groupingToggle (collapse)</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5893' value='Select Code' data-codeid='sfcode5893' /></p>
<div class='sfcode' id='sfcode5893'>
<p>while(r) {<br /> <strong>if( $(r).hasClass(uid+&#8221;_&#8221;+String(num) ) &#124;&#124; $(r).hasClass(uid+&#8221;_&#8221;+String(num-1))) { break; }</strong><br /> $(r).hide();<br /> r = r.nextSibling;<br />}</p>
</div>
<p>the IF is wrong, it&#8217;ll not work with the following grouping collapsing 2(*) (it&#39;ll collapse till the 0 above 1(*)). </p>
<p><input type='button' class='sfcodeselect' name='sfselectit8383' value='Select Code' data-codeid='sfcode8383' /></p>
<div class='sfcode' id='sfcode8383'>
<pre>0<br />    1<br />        2<br />              3<br />    1<br />        2(*)<br />              3<br />              3<br />0<br />    1(*)</pre>
</div>
<p>Similar issue just a few lines above this (didn&#8217;t check yet expand on this).<br />After a little debuging, there is a similar problem with summaries (there also no lv to check here). Checking for from uid + num to uid+ 0, will not suffice.<br />&#160;</p>
<p>Another problem is with &#8220;expand&#8221;: get, for example, a 3 levels grouping, starting expanded;</p>
<p>collapse some lv 2, some lv 1, now collapse a lv 0.</p>
<p>If you expand this lv 0, you&#8217;ll get all sublevels expanded.</p>
</p>
<p>Another problem, maybe simpler, is that you can&#8217;t search on a column hidden at start (ex. because it&#8217;s already used in the grouping).</p>
<p>Hoping this help. Best regards</p>
<p>cdkeito</p>
</div>
]]></description>
        	        	<pubDate>Thu, 04 Apr 2013 23:33:54 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28516</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28516</guid>
        	        	<description><![CDATA[<p>If you open file <strong>jquery.jqGrid.src.js</strong>&#160;you will see more as 12000 lines of code. Do you believe that one can find a bug in the long code just having description of the problem? One need to have the demo which reproduces the problem with the detailed description of steps to reproduce it. If the problem exist with remote datasource (datatype: "json" or datatype: "xml") then you need catch the exact server respunse in HTTP traffic. One can use <a href="http://www.fiddler2.com/Fiddler2/version.asp" target="_blank">Fiddler</a>, <a href="https://getfirebug.com/" target="_blank">Firebug</a>, Developer Tools of Internet Explorer or Google Chrome or many other tools. One can save the JSON/XML response in the file and reproduce the problem without any server infrastructure. <em>So posting JavaScript code with JSON/XML response and HTML data you can provide enough information <strong><span style="text-decoration: underline;">to debug</span></strong> the problem in jqGrid</em>.</p>
<p>Before posting of bug report it&#39;s important to test your progrem with old versions of jQuery (1.8.3 and 1.7.2) and jQuery UI (1.9.2 and 1.8.24). The changes in jQuery 1.9.x and jQuery UI 1.10.x are very large. There are many compatibility problems in the versions. So before you write about the bug in jqGrid 4.4.4 you should verify that the orogin of the problem is really in jqGrid and not in new versions of jQuery or jQuery UI.</p>
<p>Just an example. Look at <a href="/blog/?page_id=393/help/upgraded-to-jqgrid-4-4-4-and-jquery-1-9-0-now-getting-unrecognized-expression-syntax-error-on-edit-form-select-boxes/" target="_blank">the thread</a>. One described the problem in loading HTML data per dataUrl after updating on jqGrid and jQuery 1.9. After having detailed test case one could find out that the origin of the problem is that the method <strong>$.html</strong> from jQuery 1.9 interprets HTML fragmant as wrong if it starts with empty lines ("\r\n"). One posted the fix in jqGrid (post 4.4.4 version of github) with includding additional <strong>$.trim</strong> call (see <a href="https://github.com/tonytomov/jqGrid/commit/f6f1d0d35767d466bd9ebb1f5b37119ca1c11127" target="_blank">here</a>&#160;and <a href="https://github.com/tonytomov/jqGrid/commit/14d0c5df044c38369a480dab39f20792deef9a29" target="_blank">here</a>) although the origin of the problem was the server code which produced unneeded &#160;empty lines ("\r\n") and jQuery 1.9 which have the compatibility issue. In any way one can localize and fix the problem (or suggest some workaround) only if one able <strong><span style="text-decoration: underline;">to debug</span></strong> the problem. Posts like "my program don&#39;t work after upgrading to jqGrid 4.4.4, jQuery 1.9.x and jQuery UI 1.10.x" has no value.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Sun, 24 Mar 2013 13:43:54 +0200</pubDate>
        </item>
        <item>
        	<title>zatomant on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28514</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28514</guid>
        	        	<description><![CDATA[<p><strong>tony</strong>, maybe this can help?</p>
</p>
<p>project: fill table from remote json dataset. very simply and last time worked with any jqgrid version less 4.0.1 and jquery 1.8.2<br />if i see data in table and mark test result as OK, else not OK.</p>
</p>
<p>for IE am put in html this line</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit7490' value='Select Code' data-codeid='sfcode7490' /></p>
<div class='sfcode' id='sfcode7490'>&#60;meta http-equiv=&#34;X-UA-Compatible&#34; content=&#34;IE=edge&#34; /&#62;</div>
<p>and now,</p>
<p>config: jqGrid 4.4.4 , jQuery 1.9.1,&#160; jQuery UI 1.10.2</p>
<p>result: FF 19.0 - not OK, IE 8 mode 8 standard -<strong> OK</strong>, IE 8 mode compartible - not OK</p>
<p>in firebug i can see remote result set (OK) but table not filled any data.</p>
</p>
<p>config: jqGrid 4.4.4 , jQuery 1.8.2,&#160; jQuery UI 1.10.2 (!)</p>
<p>result: FF 19.0 - <strong>OK</strong>, IE 8 mode 8 standard - <strong>OK</strong></p></p>
]]></description>
        	        	<pubDate>Sat, 23 Mar 2013 19:48:56 +0200</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28507</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28507</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>In order to resolve your problem we need a test case. All other words does not help.</p>
<p>We can not reproduce the described problem.</p>
<p>Thank you</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Fri, 22 Mar 2013 16:58:28 +0200</pubDate>
        </item>
        <item>
        	<title>zatomant on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28506</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28506</guid>
        	        	<description><![CDATA[<blockquote>
<p>de1phi said:</p>
<blockquote>
<p>admin said:Hello All,  What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful.  Please look <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.4_changes_and_fixes" target="_blank">here</a> for a full list of changes  Enjoy Your jqGrid Team</p>
</blockquote>
<hr />
<p>thanks, but with jquery ui 1.10.0 dont displaying rows (ajax request seccesfull execute). With 1.8.24 working fine</p>
</blockquote>
<hr />
<p>+1</p>
<p>with 1.10.2 ui dont displaying rows (ajax request seccesfull execute).</p>
]]></description>
        	        	<pubDate>Fri, 22 Mar 2013 16:05:18 +0200</pubDate>
        </item>
        <item>
        	<title>phubbel on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28342</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28342</guid>
        	        	<description><![CDATA[<blockquote>
<p>admin said:Hello All,  What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful.  Please look <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.4_changes_and_fixes" target="_blank">here</a> for a full list of changes  Enjoy Your jqGrid Team</p>
</blockquote>
<hr />
<p>As a newbie to jqGrid, I&#39;m having to upgrade an app to the latest version.&#160; However, the filterGrid method has disappeared.</p>
<p>I installed from the NuGet package, but cannot find it in the source.&#160; Has it been deprecated?&#160; If so, what is the replacement?</p>
<p>Thanks!</p>
]]></description>
        	        	<pubDate>Wed, 27 Feb 2013 21:35:37 +0200</pubDate>
        </item>
        <item>
        	<title>de1phi on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28199</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28199</guid>
        	        	<description><![CDATA[<blockquote>
<p>admin said:Hello All,  What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful.  Please look <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.4_changes_and_fixes" target="_blank">here</a> for a full list of changes  Enjoy Your jqGrid Team</p>
</blockquote>
<hr />
<p>thanks, but with jquery ui 1.10.0 dont displaying rows (ajax request seccesfull execute). With 1.8.24 working fine</p>
]]></description>
        	        	<pubDate>Fri, 01 Feb 2013 11:49:59 +0200</pubDate>
        </item>
        <item>
        	<title>emailnyasiapa on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28180</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28180</guid>
        	        	<description><![CDATA[<blockquote>
<p>admin said:Hello All,  What a month... We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful.  Please look <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.4_changes_and_fixes" target="_blank">here</a> for a full list of changes  Enjoy Your jqGrid Team</p>
</blockquote>
<hr />
<p>bravoo...</p>
<p>thanks to all jqgrid team, now i can continue my sample project..</p>
</p>
<p>success to you all jqgrid team.</p>
]]></description>
        	        	<pubDate>Thu, 31 Jan 2013 06:41:13 +0200</pubDate>
        </item>
        <item>
        	<title>admin on jqGrid 4.4.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28171</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-4#p28171</guid>
        	        	<description><![CDATA[<p>Hello All,</p>
<p>What a month...<br />
We are happy to inform you that 4.4.4 version of jqGrid is out. This version support jQuery 1.9 and jQuery UI 1.10. We have fixed some issues and add some other functionality which we hope will be useful.<br />
Please look <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.4_changes_and_fixes" target="_blank">here</a> for a full list of changes</p>
<p>Enjoy<br />
Your jqGrid Team</p>
]]></description>
        	        	<pubDate>Wed, 30 Jan 2013 13:02:54 +0200</pubDate>
        </item>
</channel>
</rss>