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
130
Webgauge AsyncRefresh does not fire
posted

I have built a web user control that contains a web gauge. I have set the RefreshInterval to 5 for a default. 

Default.aspx is a content page with a site.master that dynamically creates and loads the WebGauge user controls. These load and get their intial data fine. Gauage_AsyncRefresh is never hit. It appears that a RefreshEvent never fires. What am I missing?

Using Infragistics35.WebUI.UltraWebGauge.v11.1, Version=11.1.20111.2036

Parents
  • 130
    Suggested Answer
    posted

    Control ID was generated dynamically from data. This contained white space. Used

    ucGauge.ID = Replace(PlantParam.Name,

     

    " ", vbNullString)

    This removed the whitespace from ID and now works as advertised.

Reply Children