Glossary Item Box
When you use this approach for RadControls, you need to invoke the currentLoadingPanel.Hide() method with a slight change due to the rendering of the RadControls. The code that shows the loading panels tries to append "_wrapper" at the end of the updated controls, because all of the RadControls' html wrapper elements end in this suffix. However, the code for hiding the loading panel will not look for the wrapper suffix, which will cause a javascript error. To use the above script for RadControls please apply the following change to the Hide() method:
currentLoadingPanel.Hide(currentUpdatedControl+"_wrapper");