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>
Completed
Last Updated: 15 Feb 2016 15:43 by ADMIN
Completed
Last Updated: 15 Feb 2016 15:19 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 15 Feb 2016 14:30 by ADMIN
Completed
Last Updated: 11 Feb 2016 16:38 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 05 Feb 2016 12:03 by ADMIN
When the user selects all the content and changes the font family through the FontName command, the chosen value does not remain as the selected one.

The issue is most prominent in Firefox, but could be reproduced in Chrome with a subsequent select all.
Completed
Last Updated: 05 Feb 2016 11:51 by ADMIN
A workaround is to place the rwLoading class in the proper place by using the events of the control, for example:

	<telerik:RadWindowManager ID="RadWindowManager1" runat="server" ShowContentDuringLoad="false" 
		OnClientShow="applyProperLoadingSign" OnClientPageLoad="removeLoadingSignClass">
	</telerik:RadWindowManager>
		<script type="text/javascript">
			function applyProperLoadingSign(sender, args) {
				if (!sender.get_showContentDuringLoad() && $telerik.isMobileSafari) {
					$telerik.$(".rwIframeWrapperIOS", sender.get_popupElement()).removeClass("rwLoading");
					$telerik.$(".rwWindowContent.rwExternalContent", sender.get_popupElement()).addClass("rwLoading");
				}
			}

			function removeLoadingSignClass(sender, args) {
				if ($telerik.isMobileSafari) {
					$telerik.$(".rwLoading", sender.get_popupElement()).removeClass("rwLoading");
				}
			}
                       </script>
Won't Fix
Last Updated: 04 Feb 2016 14:48 by ADMIN
Won't Fix
Last Updated: 04 Feb 2016 14:44 by ADMIN
Won't Fix
Last Updated: 04 Feb 2016 14:38 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 04 Feb 2016 14:35 by ADMIN
Completed
Last Updated: 04 Feb 2016 14:32 by ADMIN