Declined
Last Updated: 05 Nov 2014 11:57 by ADMIN
ADMIN
Telerik Admin
Created on: 07 Aug 2013 11:59
Category: ComboBox
Type: Bug Report
3
After a selection is made changing the Theme of the control twice in a row causes exception.
After making a selection in the control and changing the theme two times in a row an InvalidOperationException is thrown about the animation.
1 comment
ADMIN
Vladi
Posted on: 05 Nov 2014 11:57
Declined:

The issue is caused by combination of the current implementation of the Telerik AnimationManager and limitations/behaviors of the Silverlight framework. In order to workaround this issue all that is requried is for the AnimationManager to be disable. The next code snippet shows how to disable it in the XAML of your application:

xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
...
<telerik:RadComboBox telerik:AnimationManager.IsAnimationEnabled="False" />
...