<?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: ReloadGrid Trigger without Clear Filter</title>
	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter</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/feature-request/reloadgrid-trigger-without-clear-filter/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on ReloadGrid Trigger without Clear Filter</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12255</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12255</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>As we say in the docs - trigger("reloadGrid) - reloads the grid with the current parameters just asking again for data with the last settings in postData.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sat, 21 Nov 2009 06:02:43 +0200</pubDate>
        </item>
        <item>
        	<title>Klaus on ReloadGrid Trigger without Clear Filter</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12179</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12179</guid>
        	        	<description><![CDATA[<p>Thank&#39;s for the quick answer.</p>
<p>Is there another method or trigger-function I can call to only reload the grid without invoking any cleanup-tasks?</p>
<p>(why I need this? ... I would like to trigger an automatic reload of the table data periodically)</p>
<p>Kind regards,</p>
<p>Klaus.</p>
]]></description>
        	        	<pubDate>Thu, 19 Nov 2009 06:14:23 +0200</pubDate>
        </item>
        <item>
        	<title>tony on ReloadGrid Trigger without Clear Filter</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12177</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12177</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Uppss, sory for this. Right now I look into the code and we call resetFilters which clear the serch&#39;s. Should be added soon.</p>
<p>Sorry again.</p>
<p>Also one possible solution is to add a custom Button and then you can control evrething.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 19 Nov 2009 06:05:01 +0200</pubDate>
        </item>
        <item>
        	<title>Klaus on ReloadGrid Trigger without Clear Filter</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12176</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12176</guid>
        	        	<description><![CDATA[<p>Hello Tony!</p>
<p>I&#39;ve tried your hint, but that doesn&#39;t solve my problem.</p>
<p>The search-parameters seem to be cleared on clicking the refresh button.</p>
</p>
<p>1) select a filter and click find ...<br />POST <a href="http://localhost/htmlclient/server/webserver.dll" rel="nofollow" target="_blank"><a href="http://localhost/htmlclient/se" rel="nofollow">http://localhost/htmlclient/se</a>.....server.dll</a><br />&#160;{"_search":true,"nd":1258631399957,"rows":25,"page":1,"sidx":"name","sord":"asc","searchField":"status","searchString":"connected","searchOper":"eq"}</p>
<p>2) then close the dialog and click the refresh button<br />POST <a href="http://localhost/htmlclient/server/webserver.dll" rel="nofollow" target="_blank"><a href="http://localhost/htmlclient/se" rel="nofollow">http://localhost/htmlclient/se</a>.....server.dll</a><br />&#160;{"_search":false,"nd":1258631405494,"rows":25,"page":1,"sidx":"name","sord":"asc","searchField":"","searchString":"","searchOper":""}<br />"afterRefresh"-event called (log output)</p>
<p>It seems that the afterRefresh event is called too late for this purpose.</p>
<p>I&#39;ve tried to set the _search-field on the postdata of the serializeGridData function, but the search-fields are already empty.</p>
<p>Do you have another hint for me?</p>
</p>
<p>Kind regards,</p>
<p>Klaus</p>
]]></description>
        	        	<pubDate>Thu, 19 Nov 2009 06:00:37 +0200</pubDate>
        </item>
        <item>
        	<title>tony on ReloadGrid Trigger without Clear Filter</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12169</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12169</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>This is partial true. Actually we do not clear the search parameters, but turn the search flag to false. This mean that the search parameters are in the postData object and you can use them.</p>
<p>Here is a trick - you can use the afterRefresh event to turn on the search to true.</p>
<p>...jqGrid(&#39;navGrid&#39;,{</p>
<p>afterRefresh : function() {</p>
<p>("#mygrid").jqGrid(&#39;setGridParam&#39;,{search:true});</p>
<p>},</p>
<p>...}...);</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 19 Nov 2009 05:22:08 +0200</pubDate>
        </item>
        <item>
        	<title>Klaus on ReloadGrid Trigger without Clear Filter</title>
        	<link>http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12126</link>
        	<category>Feature Request</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/feature-request/reloadgrid-trigger-without-clear-filter#p12126</guid>
        	        	<description><![CDATA[<p>I&#39;m looking for a method to reload the grid data (from server) without clearing any set search-filters!</p>
</p>
<p>The documentation of the refresh-button in the navigator controls says:</p>
<p><em>"Enables or disables the refresh button in the pager. When the button is clicked a trigger(&#8220;reloadGrid&#8221;) is executed <strong>and the search parameters are cleared</strong>"</em></p>
</p>
<p>Is there any attribute I can define when calling the reloadGrid-method to preserve the search parameters?</p>
<p>Or is there any other method which I can use?</p>
</p>
<p>Kind regards,</p>
<p>Klaus.</p>
]]></description>
        	        	<pubDate>Wed, 18 Nov 2009 09:10:09 +0200</pubDate>
        </item>
</channel>
</rss>