Unplanned
Last Updated: 06 Nov 2018 09:58 by ADMIN
ADMIN
Dimitar
Created on: 23 Oct 2018 05:54
Category:
Type: Bug Report
1
FIX. RadWaitingBar - exception when the associated control is disabled.
To reproduce:
private void RadForm3_Shown(object sender, EventArgs e)
{
    Telerik.WinControls.UI.RadWaitingBar waitbar = new Telerik.WinControls.UI.RadWaitingBar();
    pnlCenter.Enabled = false;
    waitbar.AssociatedControl = pnlCenter;
    waitbar.StartWaiting();
}

Workaround:
Do not disable the control while using the waiting bar
0 comments