﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebDesktop - How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Fri, 28 May 2010 15:13:19 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hi Ryan,&lt;/p&gt;&lt;p&gt;Yes, You can also use this event for your scenario. Glad to hear that It works for your scenario.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Fri, 28 May 2010 12:33:58 GMT</pubDate><dc:creator>ryanb31@gmail.com</dc:creator><description>&lt;p&gt;I tried using &lt;span style="font-size: 13px"&gt;OnActionDispatched() and that event does fire when I need it to so I am using that one.&amp;nbsp; Thank you.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Fri, 28 May 2010 10:16:53 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hi Ryan,&lt;/p&gt;&lt;p&gt;Is it possible for you to attached a simple runable sample that replicates this issue? I will take a look into your sample and investigate if I can find something in there.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Fri, 28 May 2010 09:38:25 GMT</pubDate><dc:creator>ryanb31@gmail.com</dc:creator><description>&lt;p&gt;I have tried as you have suggested but the JS event is never fired.  From reading the help file it appears that event should be fired on sorts, groupings, refresh, etc, is that right?  Because it never fires at all.  There must be some other setting that I am missing.  What else needs to be set?&lt;/p&gt;</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Thu, 27 May 2010 16:29:47 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello Ryan,&lt;/p&gt;&lt;p&gt;It's weird. Would you mind to recheck it again? Please ensure that it is also declared in client side events properties.&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;function WebGrid1_OnAfterResponseProcess(controlId, actionName, lastRequestObject, xmlResponseObject)
{
		    var WebGrid1 = ISGetObject(controlId);
		    if (actionName == "Refresh") 
                    {
                    alert("test");
                    } 
                 return true;
}
&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&amp;lt;ClientSideEvents OnAfterResponseProcess="WebGrid1_OnAfterResponseProcess" /&amp;gt;
&lt;/pre&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Thu, 27 May 2010 15:10:17 GMT</pubDate><dc:creator>ryanb31@gmail.com</dc:creator><description>OnAfterResponseProcess actually never fires for me.&amp;nbsp; Whether I call Refresh from ClientAction on server side or Refresh() on the Client side OnAfterResponseProcess does not get fired.</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Thu, 27 May 2010 14:59:35 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;We have a client side events "AfterResponseProcess". You can try to validate in there. There should be a parameter called "actionName".&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How can I be notified client-side when the Grid finishes refreshing</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-can-I-be-notified-client-side-when-the-Grid-finishes-refreshing/</link><pubDate>Thu, 27 May 2010 14:39:54 GMT</pubDate><dc:creator>ryanb31@gmail.com</dc:creator><description>&lt;p&gt;I need to know when the Grid is done refreshing.  I have called grid.Refresh() client side and then added some CSS styling but it gets removed by the time the grid is done refreshing.  Is there an event I can use?&lt;/p&gt;</description></item></channel></rss>