AllowSpecialTags should retain special tags like script and iframe. However, enabling it escapes the tags, but they are never restored. Workaround: SharePoint 2013 allows iframe tags to be saved in the content, so the AllowSpecialTags can be safely removed. <telerik:RadHtmlField id="content" FieldName="PublishingPageContent" runat="server" AllowScripts="true"/>
The height of the ImageManager's Upload dialog overflows the height of its wrapper when the Editor is used in Metro or Bootstrap skin in LightWeight mode. Video: https://goo.gl/Kxn2CA
The active color of the tabs in the Editor's Image manager is blue, which matches the color of the wrapper of the tabs. The issue occurs in LightWeight Editor, in Metro skin. video: https://goo.gl/Un7Evf
This feature will allow users to set long footer's text and it will be displayed on a single line. <ExportSettings><Pdf><PageFooter><<MiddleCell Text="This is a very long footer that gets split to two lines" /></PageFooter></Pdf></ExportSettings>
The CommandArgument value of RadButton is not available in the ClientClicking eventargs of RadButton. The get_commandName() method of the event arguments always returns null. The issue is introduced in Q1 2016 release. Steps to reproduce: Run the following code and click the button. <script type="text/javascript"> function btnEdit_Clicking(sender, eventArgs) { alert(eventArgs.get_commandArgument()); } </script> <telerik:RadButton ID="RadButton2" AutoPostBack="false" runat="server" Text="Click Me" OnClientClicking="btnEdit_Clicking" CommandArgument="Name"> </telerik:RadButton>