Completed
Last Updated: 03 Nov 2015 11:47 by Asad
System.Exception: 453.6 is not a valid value for Int32.
Won't Fix
Last Updated: 14 Jun 2016 23:14 by Bryan
Completed
Last Updated: 09 Dec 2015 15:11 by ADMIN
Completed
Last Updated: 16 Jul 2015 08:30 by Jerry
Completed
Last Updated: 01 Dec 2014 11:14 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:49 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
The encountered issue stems due to inheritance of CSS rules that select globally table elements. 

For the time being you can use the following CSS reset to improve the layout of the Editor's table elements:

.reLayoutWrapper, .reWrapper_corner, .reWrapper_center,
.reLeftVerticalSide, .reRightVerticalSide,
.reTlbVertical, .reToolCell, .reContentCell,
.reToolZone, .reBottomTable, .reEditorModesCell,
.reBottomZone, .reResizeCell {
	border: 0 none !important;
	padding: 0 !important;
}

.Telerik.reWrapper, .Telerik.RadEditor .reContentCell,
.Telerik.reColorPicker, .Telerik.reInsertTable,
.Telerik.reCustomLinks a:hover {
	border: 1px solid #828282 !important;
}

.reLeftVerticalSide, .reRightVerticalSide {
	padding: 1px !important;
}

Note that these CSS rules will affect RadEditor controls outside the RadGrid. If you need to modify only RadEditors inside RadGrid, use CssClass property and change the CSS selectors according the set class name.

Also, upon the used color you may need to change the border-color according to the Skin design.
Completed
Last Updated: 03 Nov 2015 15:40 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
In IE the command works fine.

In FF the command is always disabled.

In Chrome is always enabled, but using it do not affect the content.

If you need this tool to be always disabled under Chrome, you can use the following approach to disable the tool:

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

<script type="text/javascript">
	function OnClientSelectionChange(sender, args) {
		if ($telerik.isChrome) {
			setTimeout(function () {
				sender.get_toolAdapter().getToolByName("AbsolutePosition").set_enabled(false);
			},0)
		}
	}
</script>


Completed
Last Updated: 08 Apr 2015 11:25 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
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.