Won't Fix
Last Updated: 21 Mar 2016 13:14 by ADMIN
Completed
Last Updated: 18 Mar 2016 14:45 by HaBo
Completed
Last Updated: 18 Mar 2016 09:11 by ADMIN
Won't Fix
Last Updated: 17 Mar 2016 13:46 by ADMIN
Completed
Last Updated: 15 Mar 2016 14:51 by ADMIN
Completed
Last Updated: 09 Mar 2016 14:02 by ADMIN
Won't Fix
Last Updated: 07 Mar 2016 12:41 by ADMIN
Completed
Last Updated: 07 Mar 2016 09:59 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 04 Mar 2016 03:30 by Aby
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"/>
Completed
Last Updated: 02 Mar 2016 11:19 by ADMIN
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


Completed
Last Updated: 26 Feb 2016 12:54 by ADMIN
Completed
Last Updated: 26 Feb 2016 10:01 by ADMIN
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
Unplanned
Last Updated: 24 Feb 2016 10:17 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
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>
Completed
Last Updated: 23 Feb 2016 11:18 by ADMIN
Completed
Last Updated: 18 Feb 2016 17:49 by ADMIN
Won't Fix
Last Updated: 18 Feb 2016 13:31 by Dennis
Completed
Last Updated: 17 Feb 2016 11:13 by ADMIN
Completed
Last Updated: 16 Feb 2016 10:00 by Imported User
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>