Refreshing GuiList (1 Viewer)

Guzzi

Retired Team Member
  • Premium Supporter
  • August 20, 2007
    2,161
    747
    you have to call the base methods, e.g.
    protected override void OnPageLoad()
    {
    (your code)
    base.OnPageLoad();
    }
    To get proper animations you might also need to use a background thread - as otherwise your plugin is "blocking" the render thread and thus animations can't be rendered.
     
    Last edited:

    Dragy

    Portal Pro
    April 27, 2009
    778
    333
    32
    Home Country
    Netherlands Netherlands
    Thanks! That did the trick :)

    By the way, I already use background workers:
    static BackgroundWorker bw_get_devices;
    static BackgroundWorker bw_get_macros;
    static BackgroundWorker bw_device_refresher;

    from System.Threading;
     

    Users who are viewing this thread

    Top Bottom