With the latest update (2015.3.1111.4.5), I've noticed that if we have the following code:
<telerik:RadSocialShare ID="RadSocialShare1" runat="server"> <MainButtons> <telerik:RadSocialButton SocialNetType="ShareOnTwitter" ToolTip="Tweet this" /> <telerik:RadSocialButton SocialNetType="ShareOnFacebook" ToolTip="Share on Facebook" /> <telerik:RadCompactButton ToolTip="Show more" /> </MainButtons></telerik:RadSocialShare>ALL Telerik controls break across our site. Nothing works.
However, when I remove the RadCompactButton, it works again. This is the revised code that fixes the problem:
<telerik:RadSocialShare ID="RadSocialShare1" runat="server"> <MainButtons> <telerik:RadSocialButton SocialNetType="ShareOnTwitter" ToolTip="Tweet this" /> <telerik:RadSocialButton SocialNetType="ShareOnFacebook" ToolTip="Share on Facebook" /> </MainButtons></telerik:RadSocialShare>
Just thought you'd want to know.
Chris Lee