4 Answers, 1 is accepted
0
Accepted
Shinu
Top achievements
Rank 2
answered on 21 Jul 2014, 01:08 PM
Hi Jon,
Please try the following code snippet to achieve your scenario.
Create a RadEditorAdapter.cs inside App_Code folder.
Create a default.browser inside App_Browsers folder.
Let me know if you have any concern.
Thanks,
Shinu.
Please try the following code snippet to achieve your scenario.
Create a RadEditorAdapter.cs inside App_Code folder.
using System;using System.Web.UI.Adapters;using Telerik.Web.UI;/// <summary>/// Summary description for RadEditorAdapter/// </summary>public class RadEditorAdapter : ControlAdapter{ protected override void OnLoad(EventArgs e) { var Editor = this.Control as RadEditor; if (Editor != null) { Editor.NewLineMode = EditorNewLineModes.Br; } base.OnLoad(e); } }Create a default.browser inside App_Browsers folder.
<browser refID="Default"> <controlAdapters> <adapter controlType="Telerik.Web.UI.RadEditor" adapterType="RadEditorAdapter" /> </controlAdapters></browser>Let me know if you have any concern.
Thanks,
Shinu.
0
Jon
Top achievements
Rank 1
answered on 21 Jul 2014, 01:34 PM
Hi Shinu
That's perfect many thanks - that's a technique that I haven't needed to use so far - should come in very handy :)
Best Regards
Jon
That's perfect many thanks - that's a technique that I haven't needed to use so far - should come in very handy :)
Best Regards
Jon
0
Hi guys,
There is yet another way to control multiple instances of the control in a web site/application by using ASP.NET Themes. See the following help article for more information: Using Themes.
Best regards,
Rumen
Telerik
There is yet another way to control multiple instances of the control in a web site/application by using ASP.NET Themes. See the following help article for more information: Using Themes.
Best regards,
Rumen
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.
0
Harish
Top achievements
Rank 1
answered on 30 Jul 2015, 12:08 PM
Cant we just set NewLineMode Property to Br while initialization radeditor instance ?
