<?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: Reload Grid do not clear search toolbar - with example</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example</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/reload-grid-do-not-clear-search-toolbar-with-example/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Reload Grid do not clear search toolbar - with example</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25121</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25121</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thank you all. The problem is fixed.</p>
<p><a href="https://github.com/tonytomov/jqGrid/commit/7a60f02c3e47624d0a54d87405c6b53f651368c6" rel="nofollow" target="_blank">https://github.com/tonytomov/jqGrid/commit/7a60f02c3e47624d0a54d87405c6b53f651368c6</a></p>
<p>Oleg I have not forgot about your xml recommendation</p>
</p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 11 Nov 2011 08:15:52 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Reload Grid do not clear search toolbar - with example</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25114</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25114</guid>
        	        	<description><![CDATA[<p>Hello!</p>
<p>I hope, that I found the bug. The problem is that in&#160;<strong>clearToolbar</strong>&#160;are used <strong>index</strong> instead of <strong>name</strong> property. The line <a href="https://github.com/tonytomov/jqGrid/blob/v4.2.0/js/grid.custom.js#L219" target="_blank">219</a> of grid.custom.js</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9196' value='Select Code' data-codeid='sfcode9196' /></p>
<div class='sfcode' id='sfcode9196'>$(&#34;#gs_&#34;+$.jgrid.jqID(nm)+&#34; option&#34;,$t.grid.hDiv).each(function (i){</div>
<p>should be changed to</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2062' value='Select Code' data-codeid='sfcode2062' /></p>
<div class='sfcode' id='sfcode2062'>$(&#34;#gs_&#34;+$.jgrid.jqID(<strong>this.name</strong>)+&#34; option&#34;,$t.grid.hDiv).each(function (i){</div>
<p>and the line <a href="https://github.com/tonytomov/jqGrid/blob/v4.2.0/js/grid.custom.js#L238" target="_blank">238</a></p>
<p><input type='button' class='sfcodeselect' name='sfselectit5566' value='Select Code' data-codeid='sfcode5566' /></p>
<div class='sfcode' id='sfcode5566'>$(&#34;#gs_&#34;+$.jgrid.jqID(nm),$t.grid.hDiv).val(v);</div>
<p>to</p>
<p><input type='button' class='sfcodeselect' name='sfselectit7396' value='Select Code' data-codeid='sfcode7396' /></p>
<div class='sfcode' id='sfcode7396'>$(&#34;#gs_&#34;+$.jgrid.jqID(<strong>this.name</strong>),$t.grid.hDiv).val(v);</div>
<p>In the jquery.jqGrid.src.js from jqGrid 4.2.0 it will be lines 3586 and 3605.</p>
<p>I hope this will solve the problem.</p>
<p>Best regards<br />Oleg&#160;</p></p>
]]></description>
        	        	<pubDate>Thu, 10 Nov 2011 17:12:28 +0200</pubDate>
        </item>
        <item>
        	<title>jvosloo on Reload Grid do not clear search toolbar - with example</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25112</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25112</guid>
        	        	<description><![CDATA[<p>I&#39;ve got exactly the same issue. I couldn&#39;t figure out why some of the toolbar search values were being cleared and some not &#8211; now I know why!</p>
</p>
<p>Any thoughts/workaround would be much appreciated</p>
]]></description>
        	        	<pubDate>Thu, 10 Nov 2011 14:49:03 +0200</pubDate>
        </item>
        <item>
        	<title>0xFF on Reload Grid do not clear search toolbar - with example</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25107</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/reload-grid-do-not-clear-search-toolbar-with-example#p25107</guid>
        	        	<description><![CDATA[<p>Hello,&#160;</p>
<p>Try this example: <a href="http://czepek.eu/jqgrid/" target="_blank">http://czepek.eu/jqgrid/</a>&#160;</p>
<p>Put some text in search toolbar under "User" and "Description" column.</p>
<p>Then click "reload grid" button. Text under "Description" is cleared, but Text under "User" column remains.</p>
<p>(tested on IE8 or Chrome)</p>
</p>
<p>I don&#39;t know why, but there is problem with "User" col model:</p>
<p><strong>{name:&#39;displayname&#39;, &#160; &#160;index:&#39;u.name&#39;, &#160; width:200},</strong></p>
<p>When I change<strong> index:&#39;u.name&#39;</strong> to <strong>index:&#39;name&#39; &#160;</strong>it start to work. So it seems to be problem with dot inside index name.</p>
<p>I like to have dots inside index, it helps me build SQL queries with table aliases.</p>
<p>AFAIK it worked fine in version 3.x.</p>
</p>
<p>Best regards</p>
<p>Piotr</p>
]]></description>
        	        	<pubDate>Wed, 09 Nov 2011 13:19:18 +0200</pubDate>
        </item>
</channel>
</rss>