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

RadEditor is become nonfunctional with RadGrid on same page.

1 Answer 41 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Asif
Top achievements
Rank 1
Asif asked on 14 Jul 2014, 08:20 AM
Hi all,

I am facing a strange issue, with telerik RadEditor control.

If I use only RadEditor on the page, it is working fine. But whenever RadGrid renders on that same page then RadEditor becomes non-funtional. Even I have set its content property with proper html but it is not displaying anythings. Even its design views and preview buttons are also not working.

Please let me know what I need to do to make them work successfully?

Many Thanks.

Asif Javaid

1 Answer, 1 is accepted

Sort by
0
Ianko
Telerik team
answered on 15 Jul 2014, 07:04 AM
Hi Asif,

I am enable to reproduce the described problem. You can try on your end with the following markup and see if results to the same behavior:

ASP.NET
<telerik:RadEditor runat="server" ID="RadEditor1">
    <Content>
        some text
    </Content>
</telerik:RadEditor>
 
<telerik:RadGrid runat="server" ID="RadGrid1"></telerik:RadGrid>

C#
protected void Page_Load(object sender, EventArgs e)
{
    string[] dataSource = new string[] { "value1", "vallue2"};
 
    RadGrid1.DataSource = dataSource;
    RadGrid1.DataBind();
}


I suggest checking if there are any JS errors in the console and verify if they are not related to custom client-side logic that breaks the initialization of the RadEditor control.

It would be better if you could send a simple project that demonstrates the issue, so that I could be able to investigate the problem 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
Asif
Top achievements
Rank 1
Answers by
Ianko
Telerik team
Share this question
or