<?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 - Forum: Releases</title>
	<link>http://www.trirand.com/blog/?page_id=393/releases</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/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on generate jquery.jqGrid.map.js in the next release of jqGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/generate-jquery-jqgrid-map-js-in-the-next-release-of-jqgrid#p31441</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/generate-jquery-jqgrid-map-js-in-the-next-release-of-jqgrid#p31441</guid>
        	        	<description><![CDATA[<p>Thanks Oleg,</p>
<p>Â </p>
<p>Will do the needed.</p>
<p>By the way the jQuery plugin repository is stoping to function. I do not know why.</p>
<p>Please <a href="http://plugins.jquery.com/" target="_blank">look here</a></p>
]]></description>
        	        	<pubDate>Wed, 10 Dec 2014 18:00:48 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on generate jquery.jqGrid.map.js in the next release of jqGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/generate-jquery-jqgrid-map-js-in-the-next-release-of-jqgrid#p31435</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/generate-jquery-jqgrid-map-js-in-the-next-release-of-jqgrid#p31435</guid>
        	        	<description><![CDATA[<p>Hello Tony,</p>
<p>the fileÂ <strong>jquery.jqGrid-4.7.0.zip</strong> with the new version of jqGrid (from the official trirand <a href="http://www.trirand.com/blog/?page_id=6" target="_blank">download page</a>) don't include source map file. Moreover I made some tests and could see small problem in generation of the source map: the sources property from the source map file. It seems to me that one should add small step to the distribution of jqGrid.</p>
<p>Let us we want that debugging of <strong>jquery.jqGrid.min.js</strong> in Google Chrome or Firefox would show the source lines ofÂ <strong>jquery.jqGrid.src.js</strong>. To implemntÂ this one could addÂ the fileÂ <strong>jquery.jqGrid.min.map</strong> created byÂ closure compiler. One need just verify that the last line ofÂ <strong>jquery.jqGrid.min.js</strong>Â contains the following</p>
<div class="sfcode">
<pre class="brush-javascript syntax">//@ sourceMappingURL=<strong>jquery.jqGrid.min.map</strong></pre></div><p>If one have <strong>jquery.jqGrid.min.map</strong> one should verify that and that the file contains the following linesÂ </p>
<div class="sfcode">
<pre class="brush-javascript syntax">{
"version":3,
"file":"<strong>jquery.jqGrid.min.js</strong>",
"sources":["<strong>jquery.jqGrid.src.js</strong>"],
...
}</pre></div><p>It makes correct mapping fromÂ <strong>jquery.jqGrid.min.js</strong>Â to <strong>jquery.jqGrid.min.map</strong>Â and from <strong>jquery.jqGrid.min.map</strong>Â to <strong>jquery.jqGrid.src.js</strong>.</p>
<p>If the file of source entries have another values after working ofÂ closure compiler one can justÂ make text replacement to modifyÂ <strong>jquery.jqGrid.min.map</strong>.</p>
<p>I'm not good in gradle but extending ofÂ doLast {...} ofÂ jqgrid-min task to the following work.</p>
<div class="sfcode">
<pre class="brush-javascript syntax">task 'jqgrid-min'(dependsOn: 'jqgrid') {
    description = "MinimizeÂ ..."

    <strong>def outputFile = new File(distdir, 'jquery.jqGrid.min.map')</strong>

    inputs.file jqGridFile
    outputs.file jqGridMinFile
    doLast {
        ant.taskdef(name: 'jscompile', ...
        ant.jscompile(
        ...
        }
        <strong>def fileContent = jqGridSrcMapFile.getText()
        fileContent = fileContent.replace('"sources":["dist/jquery.jqGrid.js"],', '"sources":["jquery.jqGrid.src.js"],')
        replace('"file":"jquery.jqGrid.map.js",', '"file":"jquery.jqGrid.min.js",')
        outputFile.write(fileContent)</strong>
    }
}</pre></div><p>It doesn't matter how exactlyÂ <strong>jquery.jqGrid.min.js</strong>Â andÂ <strong>jquery.jqGrid.min.map</strong>Â will be patched. it's just important that the described above entries are exist.</p>
<p>As an example one can try to debugÂ in Google Chrome <a href="http://www.ok-soft-gmbh.com/jqGrid/jquery.jqGrid-4.7.0/dist/FontAwesome4_Bootstrap3_2__.htm" target="_blank">the demo</a>, which usesÂ <strong>jquery.jqGrid.min.js</strong> andÂ <strong>jquery-1.11.1.min.js</strong>. One will sees the source code ofÂ <strong>jquery.jqGrid.src.js</strong> andÂ <strong>jquery-1.11.1.js</strong> instead.</p>
<p>It's clear that sourceÂ mapping is not perfect.Â The names ofÂ compiled/compressed variable will be not mapped to theÂ names fromÂ the original source. Nevertheless it would be helpful to haveÂ <strong>jquery.jqGrid.min.map</strong>Â file which corresponds <strong>jquery.jqGrid.src.js</strong>Â to included in <strong>jquery.jqGrid-4.7.0.zip</strong>. Even without "//@ sourceMappingURL=..." line and without patched it <strong>jquery.jqGrid.min.map</strong>Â have some value for the users (like jQuery do this. jquery-1.11.1.min.js have no "//@ sourceMappingURL=..." statement, but jquery-1.11.1.min.map can be still used to make the reference to jquery-1.11.1.js). The users could makes the required modifications yourself if it will be difficult to automate the building process. One needs just to have <strong>jquery.jqGrid.min.map</strong>Â file which corresponds <strong>jquery.jqGrid.min.js</strong>Â and <strong>jquery.jqGrid.src.js</strong>.Â </p>
<p>Best regards<br />
 Oleg</p>
<p>P.S. It would be helpful to publish the new 4.7.0 version of jqGrid on well known public places:Â <a href="https://www.nuget.org/packages/Trirand.jqGrid/" target="_blank">nuget</a>,Â <a href="http://plugins.jquery.com/jqGrid/" target="_blank">the jQuery plugin registry</a>,Â <a href="https://cdnjs.com/libraries/jqgrid" target="_blank">CDNJS CDN</a>,Â <a href="http://www.jsdelivr.com/#!jqgrid" target="_blank">jsDelivr CDN</a>Â and other.</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2014 01:15:14 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on generate jquery.jqGrid.map.js in the next release of jqGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/generate-jquery-jqgrid-map-js-in-the-next-release-of-jqgrid#p31403</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/generate-jquery-jqgrid-map-js-in-the-next-release-of-jqgrid#p31403</guid>
        	        	<description><![CDATA[<p>Hello Tony,</p>
<p>I hope that you'll soon publish new version of jqGrid. It would be very good if it would includesÂ <em>jquery.jqGrid.map.js</em> together withÂ <em>jquery.jqGrid.min.js</em>. I makes some tests and suggest you to make small changes inÂ <em>build.gradle</em> file which generates the map file. One needs firstÂ modify the line</p>
<p>Â  Â Â jscompiler 'com.google.javascript:closure-compiler:<span class="x x-first x-last">r1810</span>'</p>
<p>to</p>
<p>Â  Â  jscompiler 'com.google.javascript:closure-compiler:<strong><span class="x x-first x-last">v20141023</span></strong>'</p>
<p>to include the line</p>
<p>Â  Â Â <strong>def jqGridSrcMapFile = new File(distdir, 'jquery.jqGrid.map.js')</strong></p>
<p>and to modify the line</p>
<p>Â  Â Â ant.jscompile(output: jqGridMinFile, warning: 'QUIET', debug: logger.debugEnabled) {</p>
<p>to the line</p>
<p>Â  Â Â ant.jscompile(output: jqGridMinFile, warning: 'QUIET', <span class="x x-first x-last"><strong>sourceMapFormat: 'V3', sourceMapOutputFile: jqGridSrcMapFile</strong>, </span>debug: logger.debugEnabled) {</p>
<p>I included the modification (see <a href="https://github.com/OlegKi/jqGrid/commit/d7095b371dfe5c4f6b64bffb238420b5ac88b011" target="_blank">here</a>) in <a href="https://github.com/tonytomov/jqGrid/pull/654" target="_blank">the pending pull request</a>. Additional advantage of updating to the new version ofÂ closure-compiler is the <strong>reducing the size</strong> ofÂ <em>jquery.jqGrid.min.js</em> file.</p>
<p>I recommend additionally to upgradeÂ gradle/wrapper used in the build fromÂ <em>gradle-1.0-milestone-8a-bin</em> to the currentÂ <em>gradle-2.2-bin</em>.</p>
<p>Best regards<br />
 Oleg</p>
]]></description>
        	        	<pubDate>Sat, 22 Nov 2014 19:07:24 +0200</pubDate>
        </item>
        <item>
        	<title>Jmoney on Latest Version 4.6.0 of jqGrid has errors in parseDate :method</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/latest-version-4-6-0-of-jqgrid-has-errors-in-parsedate-method#p30345</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/latest-version-4-6-0-of-jqgrid-has-errors-in-parsedate-method#p30345</guid>
        	        	<description><![CDATA[<blockquote>
<p>Jmoney said:</p>
<blockquote>
<p>Jmoney said:</p>
<div class="console-message console-error-level">Hi Tony,</div>
<div class="console-message console-error-level">The latest version of the jqGrid in pareseDate method, a bracket is probably missing. bcoz of this error occurs. Could you please look into it.</div>
<div class="console-message console-error-level">Uncaught SyntaxError: Unexpected token { jquery.jqGrid.src.js:164</div>
<div class="console-message console-error-level"><a class="console-message-url " title="http://localhost:8020/flight-1.0.0/js/jquery.jqGrid.src-1.0.0.js" href="http://localhost:8020/flight-1.0.0/js/jquery.jqGrid.src-1.0.0.js" target="_blank"></a>Uncaught TypeError: Object [object Object] has no method &#39;jqGrid&#39; ErrorGrid-src-1.0.0.js:19</div>
<div class="console-message console-error-level"><a class="console-message-url " title="http://localhost:8020/flight-1.0.0/js/jadu/controls/ErrorGrid-src-1.0.0.js:19" href="http://localhost:8020/flight-1.0.0/js/jadu/controls/ErrorGrid-src-1.0.0.js" target="_blank"></a>Uncaught Error: Load timeout for modules: codes <a rel="nofollow" href="http://requirejs.org/docs/erro" target="_blank">http://requirejs.org/docs/erro</a>.....ml#timeout require.js:163</div>
<div class="console-message console-error-level"></div>
<div class="console-message console-error-level"></div>
</blockquote>
</blockquote>
<blockquote>
<p><strong>Sorry for the post. It is working fine. I got this error because of some javascript error.</strong></p>
<hr />
</blockquote>
<hr />
]]></description>
        	        	<pubDate>Mon, 10 Mar 2014 12:13:17 +0200</pubDate>
        </item>
        <item>
        	<title>Jmoney on Latest Version 4.6.0 of jqGrid has errors in parseDate :method</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/latest-version-4-6-0-of-jqgrid-has-errors-in-parsedate-method#p30344</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/latest-version-4-6-0-of-jqgrid-has-errors-in-parsedate-method#p30344</guid>
        	        	<description><![CDATA[<blockquote>
<p>Jmoney said:</p>
<div class="console-message console-error-level">Hi Tony,</div>
<div class="console-message console-error-level">The latest version of the jqGrid in pareseDate method, a bracket is probably missing. bcoz of this error occurs. Could you please look into it.</div>
<div class="console-message console-error-level">Uncaught SyntaxError: Unexpected token { jquery.jqGrid.src.js:164</div>
<div class="console-message console-error-level"><a class="console-message-url " title="http://localhost:8020/flight-1.0.0/js/jquery.jqGrid.src-1.0.0.js" href="http://localhost:8020/flight-1.0.0/js/jquery.jqGrid.src-1.0.0.js" target="_blank"></a>Uncaught TypeError: Object [object Object] has no method &#39;jqGrid&#39; ErrorGrid-src-1.0.0.js:19</div>
<div class="console-message console-error-level"><a class="console-message-url " title="http://localhost:8020/flight-1.0.0/js/jadu/controls/ErrorGrid-src-1.0.0.js:19" href="http://localhost:8020/flight-1.0.0/js/jadu/controls/ErrorGrid-src-1.0.0.js" target="_blank"></a>Uncaught Error: Load timeout for modules: codes <a href="http://requirejs.org/docs/erro" rel="nofollow" target="_blank">http://requirejs.org/docs/erro</a>.....ml#timeout require.js:163</div>
<div class="console-message console-error-level">Thanks</div>
<div class="console-message console-error-level">Babu A</div>
</blockquote>
<hr />
]]></description>
        	        	<pubDate>Mon, 10 Mar 2014 12:02:18 +0200</pubDate>
        </item>
        <item>
        	<title>Jmoney on Latest Version 4.6.0 of jqGrid has errors in parseDate :method</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/latest-version-4-6-0-of-jqgrid-has-errors-in-parsedate-method#p30343</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/latest-version-4-6-0-of-jqgrid-has-errors-in-parsedate-method#p30343</guid>
        	        	<description><![CDATA[<div class="console-message console-error-level">Hi Tony,</div>
<div class="console-message console-error-level"></div>
<div class="console-message console-error-level">The latest version of the jqGrid in pareseDate method, a bracket is probably missing. bcoz of this error occurs. Could you please look into it.</div>
<div class="console-message console-error-level"></div>
<div class="console-message console-error-level">Uncaught SyntaxError: Unexpected token { /blog/jqgrid <a class="console-message-url " title="http://localhost:8020/flight-1.0.0/js/require.js:163" href="http://localhost:8020/flight-1.0.0/js/require.js" target="_blank">require.js:163</a></div>
<div class="console-message console-error-level"></div>
<div class="console-message console-error-level">Thanks</div>
<div class="console-message console-error-level">Babu A</div>
]]></description>
        	        	<pubDate>Mon, 10 Mar 2014 11:55:52 +0200</pubDate>
        </item>
        <item>
        	<title>admin on jqGrid 4.5.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29778</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29778</guid>
        	        	<description><![CDATA[<p>Hello All,</p>
</p>
<p>We have updated our Wiki page with the fixes and additions of our new 4.5.4 release.</p>
<p>This is the link to the <a href="/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.5.4_changes_and_fixes" target="_blank">What is new in 4.5.4</a></p>
</p>
<p>Enjoy</p>
]]></description>
        	        	<pubDate>Fri, 01 Nov 2013 15:49:48 +0200</pubDate>
        </item>
        <item>
        	<title>tralivali on jqGrid 4.5.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29777</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29777</guid>
        	        	<description><![CDATA[<p>Hi!</p>
<p>What about the local data and form editing?</p>
]]></description>
        	        	<pubDate>Fri, 01 Nov 2013 11:39:49 +0200</pubDate>
        </item>
        <item>
        	<title>szkodniq on jqGrid 4.5.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29673</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29673</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>in your first post there is no information about what bug was fixed (also in changelog there is no information about last release), so I want to clarify which bug was fixed. It could be the one mentioned above or maybe some different but also related with iOS 7.</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 14 Oct 2013 19:38:05 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid 4.5.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29659</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29659</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>It seems you do not have read the post you replay.</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 14 Oct 2013 15:15:56 +0300</pubDate>
        </item>
        <item>
        	<title>szkodniq on jqGrid 4.5.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29651</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29651</guid>
        	        	<description><![CDATA[</p>
<p>Hi,</p>
<p>is this release fixes bug described in post below?</p>
<p><a title="iOS bug" href="http://www.trirand.net/forum/default.aspx?g=posts&#38;m=13688" target="_blank">iOS bug</a></p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Sat, 12 Oct 2013 16:47:21 +0300</pubDate>
        </item>
        <item>
        	<title>admin on jqGrid 4.5.4</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29623</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-4#p29623</guid>
        	        	<description><![CDATA[<p>Hello All,</p>
<p>Today we released jqGrid 4.5.4. This is a bug fix release.<br />
We have fixed a lot of bugs and added small improvements.<br />
The most important fix is that we have fixed a bug which breaks working jqGrid in iOS7.</p>
<p>The list of fixes will be updated soon in our <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.5.1_changes_and_fixes" target="_blank"> jqGrid Wiki Page</a> .</p>
<p>Enjoy,<br />
jqGrid Team</p>
<p>[HTML1]</p>
]]></description>
        	        	<pubDate>Sun, 06 Oct 2013 19:23:01 +0300</pubDate>
        </item>
        <item>
        	<title>admin on jqGrid 4.4.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-2-1#p29216</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-2-1#p29216</guid>
        	        	<description><![CDATA[<p>We are happy to inform you that the the 4.4.2 version of jqGrid is ready to be downloaded.</p>
<p>This version fixes many bugs and contain a lot of code optimizations.<br />
The change log can be seen <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.2_changes_and_fixes" target="_blank">here</a></p>
<p>The next release will support jQuery 1.9 and 2.0 and the latest jQuery UI.<br />
Again with this we plan to support multiple sorting<br />
We hope to do this as soon as possible.</p>
<p>Many thanks to Oleg and all other people which help to improve jqGrid.<br />
Without this help jqGrid can not exists.<br />
Again many thanks.</p>
<p>Yours jqGrid Team</p>
<p>[HTML1]</p>
]]></description>
        	        	<pubDate>Wed, 24 Jul 2013 22:32:27 +0300</pubDate>
        </item>
        <item>
        	<title>Mahalaingam on Would like to buy JQueryGrid licensed version</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/would-like-to-buy-jquerygrid-licensed-version#p29077</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/would-like-to-buy-jquerygrid-licensed-version#p29077</guid>
        	        	<description><![CDATA[<p>Right now we are using JQuery grid 4.3.2 free version in our application. We do have sorting, filtering, grouping functionalities and all we are doing at client side.</p>
<p>No need to explain and you know the limitation of free version and how it could be implemented.</p>
</p>
<p>I wanted to use the latest version of JQuery grid(4.5.2?) to leverage the multi-level grouping, multi-column grouping and other advantages but without no major code changes.</p>
<p>What are all the benefits I would have if I buy the licensed version and can I plugin the new version still at client side without major changes? Please Suggest.</p>
]]></description>
        	        	<pubDate>Fri, 28 Jun 2013 16:51:22 +0300</pubDate>
        </item>
        <item>
        	<title>admin on jqGrid 4.5.0</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-0#p28779</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-5-0#p28779</guid>
        	        	<description><![CDATA[<p>Hello All,<br />
We are happy to announce the fresh new jqGrid 4.5 release. This release adds new vfunctionality and bug fixes. Here is what is new:</p>
<ul>
<li>Sort by multiple columns</li>
<li>Toolbar searching with possibility to select different search operations  </li>
<li>jQuery 2.0 support</li>
<li>A LOT of fixes.</li>
</ul>
<p>The documentation and examples are up to date. You can see it in the appropriate pages.<br />
The examples are in Functionality and searching  item in demo and are marked as (new)</p>
<p>The full <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.5.0_changes_and_fixes" target="_blank">Change-log is here</a></p>
<p>Many Thanks to all that helped us to improve our jqGrid</p>
<p>Enjoy,<br />
The Trirand Team</p>
]]></description>
        	        	<pubDate>Mon, 13 May 2013 21:09:48 +0300</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#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='sfselectit5762' value='Select Code' data-codeid='sfcode5762' /></p>
<div class='sfcode' id='sfcode5762'>&#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='sfselectit7295' value='Select Code' data-codeid='sfcode7295' /></p>
<div class='sfcode' id='sfcode7295'>&#60;!DOCTYPE html&#62;</div>
<p>, but NOT - i have ï»¿</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit8181' value='Select Code' data-codeid='sfcode8181' /></p>
<div class='sfcode' id='sfcode8181'>Ð¿&#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>admin on jqGrid 4.4.5</title>
        	<link>http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-5#p28629</link>
        	<category>Releases</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/releases/jqgrid-4-4-5#p28629</guid>
        	        	<description><![CDATA[<p>Hello All,</p>
<p>We are happy to inform you that the new 4.4.5 version of jqGrid is available for download.</p>
<p>Mainly this is a bug fix release, but it introduces a very practical improvements - auto detection of the input JSON format. This feature is present thanks to Oleg. You can read the discussion of <a href="http://www.trirand.com/blog/?page_id=393/feature-request/autodetection-of-input-json-format/" target="_blank">this feature here</a></p>
<p>The full list of changes can be read in <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_4.4.5_changes_and_fixes" target="_blank">documentation wiki page</a></p>
<p>Enjoy the new version<br />
jqGrid Team</p>
]]></description>
        	        	<pubDate>Wed, 10 Apr 2013 18:07:11 +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='sfselectit8247' value='Select Code' data-codeid='sfcode8247' /></p>
<div class='sfcode' id='sfcode8247'>
<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>
</channel>
</rss>