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
385
Webgrid ignores DblClick event with XmlLoadOnDemand?
posted
I'm using v8.1. When using XmlLoadOnDemand with the WebGrid, the control will fire the server side DblClick event -only- on the first page of data. As soon as I move beyond the first page of data, a double-click fires only a PostBack. Am I missing a setting somewhere? Has anyone had a similar experience?
Parents
No Data
Reply
  • 2677
    posted

    Hey,

    Try setting the XmlLoadOnDemandType to Accumulative.  The default setting of Synchronous does not work very well with full post backs.  Accumulative will keep track of rows and such even after a full post back where as the default setting of Synchronous does not.  It will load the first 50 rows so any click outside of that will not work. 

    this

    .UltraWebGrid1.DisplayLayout.XmlLoadOnDemandType = Infragistics.WebUI.UltraWebGrid.XmlLoadOnDemandType.Accumulative;

    Hope this helps.

    XmlLoadOnDemandType

Children