Completed
Last Updated: 25 Nov 2014 13:35 by ADMIN
Unplanned
Last Updated: 01 Jun 2016 12:23 by ADMIN
Created by: David
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
12
Full featured File Download Manager!
Very similar to the AsynchUploadManager, just in the other direction.

 functionality:
  - download multiple files in asynch mode
  - set a limit to the number of simultaneous downloads
  - progress bar/cancel options for each
  - default to client side 'downloads' directory
  - Handle filestreams
  - convert on the fly using document processing {download as PDF}
  - zip on the fly
  - cache temporary files for sending via email as attachments
  - notify on complete per file or per batch

Thanks!
Unplanned
Last Updated: 09 Jun 2021 18:20 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
11
Hi guys,

Do you think that the Telerik UI for ASP.NET AJAX suite should offer a Radial Menu? The control should optimize and facilitate the work on touch devices.

You can find more detail for the control at:
https://support.office.com/en-us/article/Use-radial-menus-to-display-OneNote-commands-0d75f03f-cde7-493a-a8a0-b2ed6f99fbe2

http://beaucollins.github.io/radial-menu/

Thank you for your feedback!

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

			
Unplanned
Last Updated: 29 Oct 2014 12:50 by ADMIN
Created by: Brett
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
In an effort to better promote Client-Side development that leverages your API, I recommend you update your demos that capture and log events (such as http://demos.telerik.com/aspnet-ajax/input/examples/programming/clientside/apievents/defaultcs.aspx) to behave and act more like the Web Developer Console logging of objects (treenode). 

You could put a control together on the page, but I was thinking at the very least you could just add the console.log lines on these demos.. 

Also, I did a page recommendation on one of your documentation pages that covered clients side events on RadTextBox (I believe).. An event capturing demo that doesn't link to Telerik's EventArgs is kind of pointless to me.. but it would seem there isn't much documentaion in this area. So console logging the event args is just about the best way to review them.
Completed
Last Updated: 11 Nov 2014 12:37 by ADMIN
Completed
Last Updated: 05 Aug 2015 10:17 by ADMIN
Completed
Last Updated: 28 Apr 2015 11:17 by ADMIN
Completed
Last Updated: 21 May 2015 13:56 by ADMIN
As a workaround use the overload method Dock(String zoneID):

RadDock1.Dock(RadDockZone1.ClientID);
Won't Fix
Last Updated: 08 Mar 2017 16:02 by John
Completed
Last Updated: 19 Jan 2016 09:14 by Lynn
Using GIF image in the RadEditor to resize them or manipulate them somehow and saving them, results to a GIF file with black background.

You can safely use PNG images when transparency is needed, which are fully supported. 
Completed
Last Updated: 28 Jul 2015 08:17 by ADMIN
When trying to align selected text in a table, not all cells are being aligned correctly under IE and Chrome. In Firefox only one table cell is being applied with the chosen modification and not the selected text.  

Under IE and Chrome, when a table row element is in the selection, the child td elements are not processed by the Align command.

Under FF when the table text is selected, the selected element is only the first TD element. 

The problem under IE and Chrome could be resolved using the following override of the executeOnNode():

<telerik:RadEditor runat="server" ID="RadEditor1">
</telerik:RadEditor>

<script type="text/javascript">
	Telerik.Web.UI.Editor.AlignCommand.prototype.executeOnNode = function (node) {
		var utils = Telerik.Web.UI.Editor.Utils;

		if (utils.isTag(node, "table"))
			return;//prevent alignment of tables since this has no effect in browsers.

		if (utils.isTag(node, "tr")) {
			var nodes = node.childNodes;
			var nodeArr = [];

			for (var i = 0; i < nodes.length; i++) {
				nodeArr.push(nodes[i]);
			}

			while (nodeArr.length) {
				var childNode = nodeArr.shift();
				if (this.isSuitableNode(childNode))
					this.executeOnNode(childNode);
				else
					this.executeInlineNode(childNode);
			}

			return;
		}

		if (utils.isTag(node, "ul") || utils.isTag(node, "ol"))
			return this.executeDomCommand($.makeArray(node.children));

		if (utils.isTag(node, "img")) {
			if (this.nodes.length == 0 && this.canAlignImage()) {
				if (this.options.align == "none")
					this.alignBlock(this.getBlockContainer(node));

				return this.alignImage(node);
			}
			else {
				this.removeImageAlign(node);

				var imageContainer = this.getBlockContainer(node);
				if (imageContainer != node)
					this.executeOnNode(imageContainer);
				else
					return this.executeInlineNode(node);
			}
		}

		this.alignBlock(node);
	};
</script>
Completed
Last Updated: 16 Jul 2015 07:59 by ADMIN
Completed
Last Updated: 20 Jul 2015 12:04 by Antonio Bakula
Creating a large page with RadEditor control and opening the mentioned dialog will scroll the page to the top. This causes the user to loose visual  contact with the Editor.

The issue is due to the automatic textarea focusing in the clientInit() method of the dialog's logic.

To resolve the issue you should modify the dialog and remove the focusing functionality. To do so follow the next steps:

    1. Follow the Custom Built-in dialogs approach (http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultcs.aspx) to use an external and later modified Plain Paste Dialog - the MozillaPasteTextDialog.ascx;
    2. Find the clientInit() method trough the client-side logic of the MozillaPasteTextDialog.ascx file;
    3. Remove the this._container.focus() line.

You can also find attached a sample page with the fix placed, so that you can examine it.
 
Completed
Last Updated: 11 Feb 2022 14:51 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
2
Elapsed time, Estimated time and Speed are not calculated correctly. 
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>
Completed
Last Updated: 09 Oct 2014 11:06 by ADMIN
ADMIN
Created by: Magdalena
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 20 Oct 2014 13:56 by ADMIN
Completed
Last Updated: 24 Sep 2014 07:29 by ADMIN