Completed
Last Updated: 13 Jul 2015 08:04 by Christian
Completed
Last Updated: 10 Jul 2015 10:49 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 10 Jul 2015 10:44 by ADMIN
Completed
Last Updated: 10 Jul 2015 08:41 by ADMIN
Completed
Last Updated: 09 Jul 2015 15:27 by ADMIN
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>