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

RadEditor Enabled

5 Answers 135 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Warnestam
Top achievements
Rank 1
Warnestam asked on 21 Nov 2013, 03:58 PM

Hi,

We are using RadEditors Enabled property to turn on and off the control. With the new Q3 2013 update this does no longer work and we getting the following error "Sys.ArgumentException: Value must not be null for Controls and Behaviors".

Currently we have found the following workaround:


//reNotesSystem.Enabled = !readOnly; // Does not work with Telerik Q3 2013!!!
//reNotesStation.Enabled = !readOnly;
if (readOnly)
{
    reNotesStation.EditModes = EditModes.Preview;
    reNotesSystem.EditModes = EditModes.Preview;
    reNotesStation.ToolbarMode = EditorToolbarMode.ShowOnFocus;
    reNotesSystem.ToolbarMode = EditorToolbarMode.ShowOnFocus;
}
else
{
    reNotesStation.EditModes = EditModes.All;
    reNotesSystem.EditModes = EditModes.All;
    reNotesStation.ToolbarMode = EditorToolbarMode.Default;
    reNotesSystem.ToolbarMode = EditorToolbarMode.Default;
}



The work arround is not optimal and we would like to have the old behaviour back.

Kind regards

Robert Warnestam

5 Answers, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 26 Nov 2013, 09:18 AM
Hi Robert,

Currently there is a problem with using the Enabled property of the RadEditor. Please check this feedback item on the matter and try the suggested workaround. You can also use it to track the status of the issue, vote for it or comment it.

Please accept our apologies for the caused inconvenience.

Regards,
Slav
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Jay
Top achievements
Rank 1
answered on 07 Jan 2014, 07:40 PM
Has this been fixed yet? This is becoming a much bigger issue.

Thanks
0
Ianko
Telerik team
answered on 10 Jan 2014, 01:16 PM
Hi Jay,

I can confirm that the issue is already fixed and the resolved build is going to be available with the upcoming official release of RadControls, which is going to be available by the end of January.

Regards,
Ianko
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
niteshkumar
Top achievements
Rank 1
answered on 25 Jul 2014, 10:04 AM


I am working on Telerik RadEditor control but it is not working in IE11 although it is working fine in IE8.
Below tag, I am using to work with IE9 and IE10 and It works

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />

But, When I use IE11 then RadEditor is not showing in proper format.

Namespace="Telerik.WebControls" Assembly="RadEditor.Net2"

Can someone tell me, what is the problem with IE11

0
Ianko
Telerik team
answered on 28 Jul 2014, 06:16 AM
Hi Niteshkumar,

From the provided description I can see that you are using the RadEditor.Net2 assembly which is the Classic RadEditor control. The classic controls' support is discontinued, due to the retired support of .NET 2.0 controls. Therefore there is no available approach for you to use them in modern browsers.

It is recommended to upgrade to the fully supported Telerik UI for ASP.NET AJAX suite, with which you will be able to migrate the Classic RadEditor to the RadEditor control for ASP.NET AJAX.

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
Warnestam
Top achievements
Rank 1
Answers by
Slav
Telerik team
Jay
Top achievements
Rank 1
Ianko
Telerik team
niteshkumar
Top achievements
Rank 1
Share this question
or