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

[Solved] telerik editor not working with iframe on document

2 Answers 25 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Pravat
Top achievements
Rank 1
Pravat asked on 22 Jun 2011, 01:10 PM
I'm using Telerik Editor, with following,

   
<div class="Telerik-Editor">
            @{
       Html.Telerik().EditorFor(model => model.Description).Name("Editor").FileBrowser(settings => settings
           .Browse("Browse", "ImageBrowser")
           ).Render();
        }
            @Html.ValidationMessageFor(model => model.Description)
        </div>



doing only above, it is working, (Editor is working) , but If I add iframe , then Editor is disabled.
Anybody getting this error/bug?
        
            
            
<iframe src="mysomeurl" />

2 Answers, 1 is accepted

Sort by
0
Accepted
Atanas Korchev
Telerik team
answered on 22 Jun 2011, 01:23 PM
Hi Pravat,

You need to fully close the iframe tag:

<iframe src=""></iframe>



Regards,
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
Pravat
Top achievements
Rank 1
answered on 23 Jun 2011, 05:05 AM
Thank you Atanas, very good catch
Tags
Grid
Asked by
Pravat
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Pravat
Top achievements
Rank 1
Share this question
or