This is a migrated thread and some comments may be shown as answers.

[Solved] (Error Pop Up) Editor with MVC Extension (IE7)

3 Answers 26 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Yosuke
Top achievements
Rank 1
Yosuke asked on 25 Sep 2010, 12:42 AM
I just notice that when I make blank in the editor field and leave the editor, I always get an error pop up which shows "A Runtime Error has occurred".
Does anyone have any ideas to resolve this issue?

I use both IE7 and Firefox. When I use Firefox, I don't get this error, but when I use IE7, I get this error pop up.

3 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 27 Sep 2010, 07:36 AM
Hi Yosuke,

 We are not aware of such a problem. Can you reproduce it in our online demos? If yes please let us know what the required steps are.

All the best,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Yosuke
Top achievements
Rank 1
answered on 27 Sep 2010, 11:18 PM
Atanas,

Thank you for your comment.

This is the steps how I got this error pop up with IE7.

1. Uncheck "Disable script debugging (Internet explorer)" with Internet Options in Advanced tag.

2. Delete all sentences from editor field.

3. Click somewhere outside the editor

If you uncheck "Disable script debugging" with Internet explorer, you will see error pop up window, if you don't, you will see JavaScript warning sign on lower left of the browser.

I put some screen shots with my attachment file.

Yosuke
0
Alex Gyoshev
Telerik team
answered on 28 Sep 2010, 03:54 PM
Hello Yosuke,

We managed to reproduce the problem - it occurs on every edit when the typing is in progress (e.g. when you hit the delete key) and the editor gets blurred. I am pleased to inform you that we fixed it for the Q2 service pack - the following should be added to the editor constructor in telerik.editor.js:

$t.editor = function (element, options) {
    // ...

    $(document).bind('mousedown', function() {
            if (self.keyboard.typingInProgress())
                self.keyboard.endTyping(true);
        });

}

Sincerely yours,
Alex Gyoshev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
General Discussions
Asked by
Yosuke
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Yosuke
Top achievements
Rank 1
Alex Gyoshev
Telerik team
Share this question
or