A rad calculator picker for asp.net textboxes similar to what you have in Silverlight.
The error is "Wrong Document". The dialog creates the table from different document instead of the document of the RadEditor's content area.
Here is the workaround:
<script type="text/javascript">
	Telerik.Web.UI.InsertTableLight.prototype.getModifiedTable = function(tableToModify){
		var rowCount = parseInt(this._rowsCount.value, 10);
		var colCount = parseInt(this._colsCount.value, 10);
		if (!tableToModify && !(isNaN(rowCount) || isNaN(colCount))) {
			tableToModify = this._editor.get_document().createElement("table");
			this._originalRowsCount = 0;
			this._originalColsCount = 0;
		}
		if (!tableToModify) return;
		var originalRowsCount = this._originalRowsCount;
		var originalColsCount = this._originalColsCount;
		if (rowCount > 0 && rowCount != originalRowsCount) {
			rowCount > originalRowsCount ? this.addRowsCols(tableToModify, originalRowsCount, rowCount, true) : this.removeRowsCols(tableToModify, originalRowsCount, rowCount, true);
		}
		if (colCount > 0 && colCount != originalColsCount) {
			colCount > originalColsCount ? this.addRowsCols(tableToModify, originalColsCount, colCount, false) : this.removeRowsCols(tableToModify, originalColsCount, colCount, false);
		}
		this._setAttribValue(tableToModify, "align", this._alignmentSelectorTable.getAlign());
		var oSpacing = parseInt(this._cellSpacing.value, 10);
		if (!isNaN(parseInt(oSpacing, 10))) this._setAttribValue(tableToModify, "cellSpacing", oSpacing >= 0 ? oSpacing : "", (oSpacing >= 0));
		var oPadding = parseInt(this._cellPadding.value, 10);
		if (!isNaN(parseInt(oPadding, 10))) this._setAttribValue(tableToModify, "cellPadding", oPadding >= 0 ? oPadding : "", (oPadding >= 0));
		var oBorderWidth = parseInt(this._borderWidth.value, 10);
		if (!isNaN(parseInt(oBorderWidth, 10))) this._setAttribValue(tableToModify, "border", oBorderWidth >= 0 ? oBorderWidth : "", (oBorderWidth >= 0));
		return tableToModify;
	}
</script>
			The dragging clue element is shown before the actual dragging of the element in the Grid is initiated (immediately after the item is clicked). The problem is reproducible in Chrome. Comment: The problem is not reproducible in the following TreeView demo: http://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/draganddropnodes/defaultcs.aspx Steps to reproduce: 1. Open http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/drag-and-drop/defaultcs.aspx 2. Click over an item (just mouse-down, without moving the mouse nor full click) Result: The dragging clue is shown without actual moving of the mouse pointer
RadHtmlChart does not cache the correct size when placed inside initially hidden iframe.
Workaround:
            function redrawChart() {
                kendo.drawing.util.TextMetrics.current._cache = new kendo.drawing.util.LRUCache(1000);
                $find("<%=RadHtmlChart1.ClientID%>").get_kendoWidget().redraw();
            }
			I love WebForms and the wealth in the Toolbar. I would like to write the payload of the web page in a webform and limit the round tripping with micro webservices, so there is no PostBack. Which means I can do more clientside in a KendoUI style. This would address the criticism of the bloat that comes with ViewState in webforms offering a leaner web page, but with all the advantages of the JavaScript tooling. For the most part a lot of this can be done already, would just prefer not to have any limitations in the controls that I can use for this. Just that there is such a driver now with the fashion of AngularJS/SPA applications suggesting that webforms cannot compete here.
When RadEditor with Bootstrap skin is inserted in the ContentTemplate of RadWindow, the tools look incorrect.
A temporary solution is to override  some CSS rules with more proper values:
<style>
    .RadWindow .RadEditor .Bootstrap.reToolbarWrapper .reToolbar .reToolLastItem .reTool {
         border-right-width: 0;
    }
    .RadWindow .Bootstrap.RadEditor.reWrapper .reSplitButton.reTool {
        width: 42px;
    }
    .RadWindow .Bootstrap.RadEditor.reWrapper .Bootstrap.reToolbarWrapper .reToolbar li {
        border-right-width: 1px;
        border-left-width: 0;
    }
    .RadWindow .Bootstrap.RadEditor.reWrapper .Bootstrap.reToolbarWrapper .reToolbar li.reToolFirstItem {
        border-left-width: 1px;
    }
    .RadWindow .Bootstrap.RadEditor.reWrapper .Bootstrap.reToolbarWrapper .reToolbar .reSeparator + li {
        border-width: 1px;
    }
</style>
<telerik:RadWindow runat="server" Width="1200px" Height="600px" VisibleOnPageLoad="true">
    <ContentTemplate>
        <telerik:RadEditor runat="server" Skin="Bootstrap">
        </telerik:RadEditor>
    </ContentTemplate>
</telerik:RadWindow>
			There is a missing label in the Box tab (Width and Height options) in the StyleBuilder dialog.
You can dynamically change the label by following this example:
<telerik:RadEditor runat="server" ID="RadEditor1" OnClientCommandExecuted="OnClientCommandExecuted">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="StyleBuilder" />
        </telerik:EditorToolGroup>
    </Tools>
</telerik:RadEditor>
<script>
    function OnClientCommandExecuted(sender, args) {
        var command = args.get_commandName();
        if (command === "StyleBuilder") {
            var dialog = sender.get_dialogOpener()._dialogContainers[command];
            dialog.add_pageLoad(fixSectionName);
        }
    }
    function fixSectionName(sender, args) {
        var dialogWin = sender.get_contentFrame().contentWindow;
        var label = dialogWin.$telerik.$(".reStyleBuilderBoxSize").find("legend");
        label.html("Dimensions");
    }
</script>
			The editor does not go to edit mode. The problem occurs also when Auto mode is used. This prevents the developers to rely on the AutoResizeHeight functionality when a mix of all rendering modes is required. 
Possible workaround is to use the RadDeviceDetectionFramework - http://docs.telerik.com/devtools/aspnet-ajax/controls/raddevicedetectionframework - and programmatically disable the AutoResizeHeight in mobile devices:
ASP.NET
<telerik:RadEditor ID="RadEditor1" runat="server" RenderMode="Auto"
    AutoResizeHeight="true">
    <Content>
        <p>editor</p>
    </Content>
</telerik:RadEditor>
C#
using Telerik.Web.Device.Detection;
public partial class Default : System.Web.UI.Page
{
    private void Page_Load()
    {
        if (Detector.GetScreenSize(Request.UserAgent) < DeviceScreenSize.Medium) {
            RadEditor1.AutoResizeHeight = false;
        }
    }
}
			For the time being you can safely use the same scenario with ContentAreaMode set to Div.
Currently, opening the CustomColorPallete popup always selects the #808080 color.
To have this behavior use the custom code solution below:
<telerik:RadColorPicker runat="server" ID="RCP" EnableCustomColor="true" OnClientLoad="OnClientLoad" />
<script>
    function OnClientLoad(sender, args) {
        $telerik.$(sender._customColorButton).click(refreshPalette(sender));
    }
    function refreshPalette(sender) {
        return function (evt) {
            var colorPicker = sender;
            var selectedColor = colorPicker.get_selectedColor() || "#808080";
            colorPicker._updateHslPaletteElementsUI(colorPicker._getRgbFromHex(selectedColor), null, true);
        };
    }
</script>
			When selecting a table element in the content area via the Dom inspector, Delete Table does not remove the table. You can use the RemoveElement from DOM inspector as a temporary workaround.
We're using Telerik.ReportViewer.WebForms.ReportViewer for exporting to another files format but only exported to excel file I got error message below.
please help to advise for this error.
Server Error in '/' Application.
Attempting to get range {22,19}{10,3},Merged=False,Parent=printPackingList2[0], that intersects with an already merged range.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
Exception Details: System.InvalidOperationException: Attempting to get range {22,19}{10,3},Merged=False,Parent=printPackingList2[0], that intersects with an already merged range.
Source Error: 
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace: 
 [InvalidOperationException: Attempting to get range {22,19}{10,3},Merged=False,Parent=printPackingList2[0], that intersects with an already merged range.]
   Telerik.Reporting.Excel97.Worksheet.GetRange(Int32 col, Int32 row, Int32 colSpan, Int32 rowSpan) +186
   Telerik.Reporting.ExcelRendering.Excel97.Worksheet.Telerik.Reporting.ExcelRendering.IWorksheet.GetRange(Int32 col, Int32 row, Int32 colSpan, Int32 rowSpan) +73
   Telerik.Reporting.ExcelRendering.RenderingItem.GetRange(IWorksheet worksheet, TableLayoutInfo layoutInfo) +381
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +78
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +141
   Telerik.Reporting.ExcelRendering.Section.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +62
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +638
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +141
   Telerik.Reporting.ExcelRendering.Report.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +786
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +638
   Telerik.Reporting.ExcelRendering.Report.Render(IWorkbook workbook) +373
   Telerik.Reporting.ExcelRendering.Excel97.ExcelReport.Telerik.Reporting.Processing.IRenderingExtension.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback) +184
   Telerik.Reporting.Processing.ReportProcessor.RenderCore(ExtensionInfo extensionInfo, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) +1386
   Telerik.Reporting.Processing.ReportProcessor.RenderCore(String format, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) +103
   Telerik.ReportViewer.WebForms.ReportExportOperation.RenderReport(String format, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext) +259
   Telerik.ReportViewer.WebForms.ReportRenderOperation.PerformOperationOverride() +340
   Telerik.ReportViewer.WebForms.HandlerOperation.PerformOperation(HttpContext context, ICacheManager cacheManager) +74
   Telerik.ReportViewer.WebForms.BasicHandler.ProcessRequest(HttpContext context) +276
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +341
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +69
			http://demos.telerik.com/aspnet-ajax/editor/mobile-examples/overview/default.aspx Error: Uncaught TypeError: Cannot read property 'Polling' of undefined
For the time being you can manually set the localization string for the "Add Custom Color" and "Current Color" buttons: 
		<telerik:RadEditor ID="RadEditor1" runat="server" RenderMode="Mobile" Language="de-DE" LocalizationPath="~/App_GlobalResources"></telerik:RadEditor>
		<script>
			var initialize = Telerik.Web.UI.Editor.MobileColorPicker.prototype.initialize;
			var addCustomColorTextLocalized = "Add Custom Color Localized";
			var currentColorTextLocalized = "Current Color Localized";
			Telerik.Web.UI.Editor.MobileColorPicker.prototype.initialize = function () {
				var colorPicker = this;
				initialize.call(colorPicker);
				
				colorPicker._addCustomColorText = addCustomColorTextLocalized;
				colorPicker._currentColorText = currentColorTextLocalized;
			}
		</script>
			Using the RadEditor with Auto or Mobile mode in a RadWindow is impossible because JS error are thrown when dialog is shown. For the time being, the most proper solution for this case is using the Lightweight mode for RadEditor.
In the meantime, use the following workaround:
<script type="text/javascript">
                var designMode = Telerik.Web.UI.EditModes.Design;
                var editorPrototype = Telerik.Web.UI.RadEditor.prototype;
                var keypress = editorPrototype._keyPressHandler;
                editorPrototype._keyPressHandler = function (ev) {
                    if (this.get_mode() == designMode) {
                        keypress.call(this, ev);
                    }
                }
                var keyDownOverride = editorPrototype._keyDownHandlerEnableTrackChangesOverride;
                editorPrototype._keyDownHandlerEnableTrackChangesOverride = function (ev) {
                    if (this.get_mode() == designMode) {
                        keyDownOverride.call(this, ev);
                    }
                }
                var keydown = editorPrototype._keyDownHandler;
                editorPrototype._keyDownHandler = function (ev) {
                    if (this.get_mode() == designMode) {
                        keydown.call(this, ev);
                    }
                }
            </script>