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

RadEditor set_html IE issue

1 Answer 33 Views
Editor
This is a migrated thread and some comments may be shown as answers.
MikeS
Top achievements
Rank 1
MikeS asked on 17 Jul 2014, 05:07 PM
Hello there,

im using radeditors to update news content. when i click in the radgrid on some row, it opens a jquery dialog and sets two radeditor using set_html(Preview and Content).

This works perfect in google chrome but not on IE and FF. the html field has the content, but the design field dont and i cant even type on it.

here's the code:
var varTitle = eventArgs.getDataKeyValue("title");
var varInitialDate = eventArgs.getDataKeyValue("initial");
var varEndDate = eventArgs.getDataKeyValue("end");
var varPreview = eventArgs.getDataKeyValue("prev");
var varContent = eventArgs.getDataKeyValue("content");
*** Opens the dialog ***
$find('<%= Title.ClientID%>').set_value(varTitle);
$find('<%= ID.ClientID%>').get_textBox().control.set_value(varInitialDate);
$find('<%= ED.ClientID%>').get_textBox().control.set_value(varEndDate);
$find('<%= Preview.ClientID%>').set_html(varPreview);
$find('<%= Content.ClientID%>').set_html(varContent);

any ideas on what the problem is?

thanks

1 Answer, 1 is accepted

Sort by
0
Ianko
Telerik team
answered on 21 Jul 2014, 08:08 AM
Hi Mike,

I am not aware of any issues related to the set_html() method. And the scenario described sounds more complex than a simple usage of this method.

If the RadEditor control is somehow moved across the DOM element or dynamically shown upon user options, then I assume this is a known issue related to the dynamic rendering of the control. You can examine this help article for more details on this matter.

If you still have issues with this matter, you can try isolate this within a simple, locally runnable project and provide it, so that I could investigate it on my end.

Regards,
Ianko
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Editor
Asked by
MikeS
Top achievements
Rank 1
Answers by
Ianko
Telerik team
Share this question
or