Completed
Last Updated: 09 Jul 2015 10:33 by Ioish
Completed
Last Updated: 06 Jul 2015 07:15 by Suzy
Uploading a file when ExplorerMode is set to FileTree causes a JavaScript error in FileExplorer when the AsyncUpload is enabled.
Completed
Last Updated: 01 Jul 2015 15:00 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
FIX: Menu popup containers do not have background / border in metro skin
Completed
Last Updated: 29 Jun 2015 13:26 by Kevin Neumann
Won't Fix
Last Updated: 29 Jun 2015 13:21 by ADMIN
ADMIN
Created by: Martin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 26 Jun 2015 10:53 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
The grid adds the correct Aria-Selected attribute, but JAWS does not work
Completed
Last Updated: 25 Jun 2015 15:57 by ADMIN
ADMIN
Created by: Dimitar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 24 Jun 2015 07:50 by ADMIN
Won't Fix
Last Updated: 22 Jun 2015 12:11 by ADMIN
ADMIN
Created by: Iana Tsolova
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Completed
Last Updated: 22 Jun 2015 11:06 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 19 Jun 2015 14:34 by ADMIN
When user clicks on e.g., bold text, comment, link, etc. the UI of RadEditor is not updated

Possible workaround is using the Window's Show event to attach a handler, that re-attaches the mouseup event of RadEditor with setTimeout:

<telerik:RadWindowManager runat="server" ID="RadWindowManager1">
    <Windows>
        <telerik:RadWindow runat="server" ID="RadWindow1" VisibleOnPageLoad="true" Width="800px" Height="500px" OnClientShow="OnClientShow">
            <ContentTemplate>
                <telerik:RadEditor ID="theEditor" runat="server" Width="100%" Height="100%" EnableComments="true">
                    <TrackChangesSettings Author="RadEditorUser" UserCssId="reU1"></TrackChangesSettings>
                    <Content>
                        <h2 class="titleText">RadEditor for ASP.NET AJAX</h2>
                        <p style="text-align: justify;"><span style="font-size: 19px; color: #4f6128;"><strong>RadEditor</strong></span>
                        is not simply an <strong>
                        <span class="reComment reU1" author="RadEditorUser" comment="comment 1" title="RadEditorUser: comment 1: 6/12/2015, 11:27:35 AM" timestamp="1434097655291">HTML</span></strong>
                        Editor.
                        <a href="http://www.telerik.com/products/aspnet-ajax/sharepoint.aspx">Link</a>.</p>
                    </Content>
                </telerik:RadEditor>
            </ContentTemplate>
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>

<script type="text/javascript">
    function OnClientShow(sender, args) {
        var editor = $find("<%= theEditor.ClientID %>");

        window.setTimeout(function () {
            editor.attachInternalHandler("mouseup", function () {
                editor.raiseEvent("selectionChange");
            });
        }, 0);
                
    }
</script>
Completed
Last Updated: 19 Jun 2015 13:35 by ADMIN
Workaround:
Toggle the fullscreen mode of the editor by adding the "editor.toggleScreenMode()" method two times at the end of the following callback, located in this JavaScript file ("C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\wpresources\RadEditorSharePoint\7.6.1.0__1f131a624888eeed\Resources\SPEditorTools.js")

configObj.ReturnCallback = function (url, text, config, newAsset) {
    elemLink.href = assetPickerValue.value;
    document.body.removeChild(assetPickerValue);
    if (inserting && url) {
        var images = elemLink.getElementsByTagName("img");
        var textContent = elemLink.innerText != null ? elemLink.innerText : elemLink.textContent;
        if (textContent === "" && (!images || !images.length)) {
            if (linkContent.match(/</)) {
                Telerik.Web.UI.Editor.Utils.setElementInnerHtml(elemLink, linkContent);
            }
            else {
                var textNode = elemLink.ownerDocument.createTextNode(linkContent || text);
                elemLink.appendChild(textNode);
            }
        }
        if (editorSelection) editorSelection.selectRange(currentRange);
        editor.pasteHyperLink(elemLink, "InsertLink");

//WORKAROUND:
        if (editor.isFullScreen() == true) {
            editor.toggleScreenMode();
            editor.toggleScreenMode();
        }
    }
};



Completed
Last Updated: 18 Jun 2015 19:55 by Clyde
Under IE, when two tables are placed next to each other, the Table Properties may cause the one to appear nested inside.


Currently, this can be workarounded only by assuring that there is some element between them - <br>, <p>, <div>, <span> etc.
Completed
Last Updated: 17 Jun 2015 15:31 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
A Sys.WebForms.PageRequestManagerParserErrorException error is thrown sporadically on some demos in the QSF.


Steps to reproduce:
(The error is not reproducible every time on all machines so you can find attached a fiddler cap log from the reproduction):

1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx

2. Try to open the Crop dialog (in IE11)

Result: A script exception is thrown
SCRIPT5022: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.
Details: Error parsing near 'HwdlHwoCAh8LaB8MaGRk'.
File: Telerik.Web.UI.WebResource.axd, Line: 15, Column: 16485
Completed
Last Updated: 17 Jun 2015 08:19 by ADMIN
If a long paragraph is copied into the editor, <br> tags appear in thea content without being added at first place. 

For the time being you can resolve this by adding the following script below the editor declaration:

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

<script type="text/javascript">
    var oldStripFormatting = Telerik.Web.UI.Editor.Utils.stripFormatting;

    Telerik.Web.UI.Editor.Utils.stripFormatting = function (textHtml, clearValue) {
        if (clearValue === "ALL_NO_BRAKES") {
            textHtml = textHtml.replace(/\n/g, "");
            textHtml = textHtml.replace(/<\/p>/g, "<br/>");
        }

        textHtml = oldStripFormatting.call(this, textHtml, clearValue);
        return textHtml;
    }
</script>
Completed
Last Updated: 16 Jun 2015 12:49 by ADMIN
Accepting tracked deleted block element will delete the following block element
Won't Fix
Last Updated: 15 Jun 2015 14:31 by ADMIN