Completed
Last Updated: 12 Nov 2014 13:19 by ADMIN
Completed
Last Updated: 12 Nov 2014 13:11 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
RadEditor's RTF convertor improvements.
Declined
Last Updated: 12 Nov 2014 13:07 by ADMIN
Completed
Last Updated: 12 Nov 2014 13:05 by ADMIN
Completed
Last Updated: 12 Nov 2014 13:00 by ADMIN
Completed
Last Updated: 12 Nov 2014 09:24 by Elena
ADMIN
Created by: Ianko
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
On opening the TemplateManager dialog under IE11 the loading panel is not hiding.

Due to this issue, the user cannot operate with this dialog under IE11.

The following example setup is resolving the issue:

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

<script type="text/javascript">
    function OnClientCommandExecuted(editor, args) {
        var commandName = args.get_commandName();

        if (commandName === "TemplateManager" && $telerik.isIE) {
            var dialog = editor.get_dialogOpener()._dialogContainers["TemplateManager"];

            dialog.add_activate(fixDialog);
        }
    }

    function fixDialog(dialog) {
        dialog._onWindowUrlChanged();
        dialog.remove_activate(fixDialog);
    }
</script>
Completed
Last Updated: 11 Nov 2014 14:47 by ADMIN
The issue appears when the user starts to type and the cursor is between BR elements. Тhe first typed character is out of the INS element instead its first one. The rest of the typed content is wrapped in SPAN and U elements.
Completed
Last Updated: 11 Nov 2014 12:37 by ADMIN
Completed
Last Updated: 11 Nov 2014 09:24 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 11 Nov 2014 09:22 by ADMIN
Completed
Last Updated: 10 Nov 2014 14:38 by ADMIN
ADMIN
Created by: Misho
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
1. go to http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx or use any radEditor instance you have

2. switch to html mode and delete all html content

3. copy the following html code and paste it to the html mode text area.

<table width="100%" style="color: inherit; font-family: inherit; font-size: inherit;" cellspacing="0" cellpadding="0"> <tbody> <tr style="padding: 0px;"> <td style="padding: 0px; height: 20px;"> </td> </tr> </tbody> </table>

4.switch back to design mode.

5.copy the following html code: <p>TEST</p>

6. set cursor inside the table (you will see table border in design mode)

6. paste copied html using ctrl+v or paste command from editor tool bar

7. switch to html mode and notice that you have several &nbsp; added to your html















Completed
Last Updated: 10 Nov 2014 13:13 by Elena
if I set the editor content using set_html() method, it creates an undo point but when you click on undo (or call editor.fire('Undo'); ) undo icon becomes inactive but nothing happens to the content

function setHtmlTestCommand(commandName, editor, args) {
	var html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
	html += '<html xmlns="http://www.w3.org/1999/xhtml">';
	html += "<p style='color:red;background-color:black;'>Test test test</p>";
	html += "</html>";
	editor.set_html(html)
};

The problem is due to that full HTML content is set in the content area.
Completed
Last Updated: 06 Nov 2014 14:54 by ADMIN
Completed
Last Updated: 06 Nov 2014 14:29 by ADMIN
Completed
Last Updated: 06 Nov 2014 13:55 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 06 Nov 2014 12:52 by ADMIN
Declined
Last Updated: 06 Nov 2014 12:41 by Elena