I was looking at my old version of the editor. These steps:
1. Add this to HTML view
a<br>
b<br>
c<br>
2. Switch to Design view. And then highlight the text (Ctrl+A)
3. Click the bullet list.
4. The generated HTML was
<ul><li><span style="line-height: 1.5;">a</span></li><li><span style="line-height: 1.5;">b</span></li><li><span style="line-height: 1.5;">c</span></li></ul>
But, in the latest version, the HTML generated is
<ul><li>a<br>
b<br>
c</li></ul>
So, the logic of the bullet points has changed. How can I add a bullet list to selected text (as done previously) in the new version.
Thanks.
1. Add this to HTML view
a<br>
b<br>
c<br>
2. Switch to Design view. And then highlight the text (Ctrl+A)
3. Click the bullet list.
4. The generated HTML was
<ul><li><span style="line-height: 1.5;">a</span></li><li><span style="line-height: 1.5;">b</span></li><li><span style="line-height: 1.5;">c</span></li></ul>
But, in the latest version, the HTML generated is
<ul><li>a<br>
b<br>
c</li></ul>
So, the logic of the bullet points has changed. How can I add a bullet list to selected text (as done previously) in the new version.
Thanks.
8 Answers, 1 is accepted
0

Hugh
Top achievements
Rank 1
answered on 21 Aug 2013, 07:44 PM
Yes I am having the same problem
0

Julian
Top achievements
Rank 1
answered on 21 Aug 2013, 09:02 PM
Actually, I think this is due to HTML5. Is there a setting to override HTML5?
0
Hello All,
The described behavior indeed is due to changed functionality of the list insertion in the current version.
You could follow these articles for more information and possible solutions:
Regards,
Ianko
Telerik
The described behavior indeed is due to changed functionality of the list insertion in the current version.
You could follow these articles for more information and possible solutions:
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

Steven
Top achievements
Rank 1
answered on 03 Sep 2013, 05:56 AM
It appears the change to bullets is now completely broken when used in a table.
Add this html to the editor:
Switch to Design and then place the cursor in any cell, add a bullet. Invalid HTML is generated with the td tag being replaced.
I have now reverted back to an older version.
Add this html to the editor:
<
table
>
<
tbody
>
<
tr
>
<
td
> </
td
>
<
td
> </
td
>
</
tr
>
</
tbody
>
</
table
>
Switch to Design and then place the cursor in any cell, add a bullet. Invalid HTML is generated with the td tag being replaced.
<
table
>
<
tbody
>
<
tr
>
<
ul
>
<
li
></
li
>
</
ul
>
<
td
> </
td
>
</
tr
>
</
tbody
>
</
table
>
I have now reverted back to an older version.
0
Hello Steven,
This problem is known and it is already fixed, so with the official release of RadControls Q3 2013 the insertion of lists in a table cell will be working as expected.
Regards,
Ianko
Telerik
This problem is known and it is already fixed, so with the official release of RadControls Q3 2013 the insertion of lists in a table cell will be working as expected.
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

Steven
Top achievements
Rank 1
answered on 05 Sep 2013, 06:38 AM
Thanks Ianko. I saw the bug report (and also had added a comment to it). The status as or right now is still showing "Approved", so one would assume that is isn't fixed. Might be a good idea to change the status or add a comment to the bug report. Is this fixed in the latest internal build for download? Version notes don't appear to mention it.
0
Hi Steven,
Currently this bug fix is on testing process in our development line and is not placed on any internal build.
The fix is going to be ready and officially released in RadControls Q3 2013, which will be available in the middle of October 2013.
The status of the feedback item will be changed when it is entirely finished with the development process and ready for release.
Regards,
Ianko
Telerik
Currently this bug fix is on testing process in our development line and is not placed on any internal build.
The fix is going to be ready and officially released in RadControls Q3 2013, which will be available in the middle of October 2013.
The status of the feedback item will be changed when it is entirely finished with the development process and ready for release.
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

LePaul
Top achievements
Rank 1
answered on 28 Jan 2014, 11:07 AM
First link is broken. Correct link is: http://www.telerik.com/support/kb/aspnet-ajax/details/inserting-lists-indenting-outdenting-and-justify-a-single-line
In short: the problem with bullet lists, in- outdent, justify etc. lies in the browser behavior. They produce quite different HTML sometimes. The link above provides a workaround.
In short: the problem with bullet lists, in- outdent, justify etc. lies in the browser behavior. They produce quite different HTML sometimes. The link above provides a workaround.