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

Ul and li tab problem

1 Answer 78 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Jouni
Top achievements
Rank 1
Jouni asked on 03 May 2010, 10:18 AM
Hello everybody,

I found out intresting problem with IE 6,7 and 8. Everythink works fine with firefox. I don't is this Bug or featrure ;). First I created simble page where is rad editor version 7.1.2. Created button click event to code behind. where I put following code.
 
            Dim editor As Telerik.WebControls.RadEditor = CType(Page.FindControl("editor"), Telerik.WebControls.RadEditor) 
        
            editor.Html = "<ul><li>Link1</li><li>Link2</li></ul>"  

After button click I changed  radeditor viewmode to html mode.Now RadEditor output is :
<ul> 
<li>Link
<li>Link 2</li></ul




first li ending tag is missing.Does anyone have idea how to fix this ?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 03 May 2010, 12:38 PM
Hello Jouni ,

This is a IE but that you can fix by setting the ConvertToXhtml property of RadEditor to true, e.g.

<radE:RadEditor ID="RadEditor1" runat="server" ConvertToXhtml="true" ></radE:RadEditor>

If you still experience the problem, upgrade to the latest official version 7.3.6 of RadEditor Classic.

Sincerely yours,
Rumen
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.
Tags
Editor
Asked by
Jouni
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or