Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
UltraWebGrid page asyc but row click fullPostBack
posted

I am using NetAdvantage 9.1 ASP.NET CLR2x. I have an UltraWebgrid inside of a WebAsyncRefreshPanel. I want an async refresh when the users changes pages. I want a full post back when a user clicks a row.  I have set the ClientSideEvent RefreshRequest to a java script event handler.

        function WebAsyncRefreshPanel1_RefreshRequest(oPanel,oEvent,id)

        {

          if (id=="UltraWebGrid1" && oEvent.type=="Click")        
           oEvent.fullPostBack=true;         
        }

oEvent.type is always undefined. How do I detect the Click event and ignore the page event?