This question is locked. New answers and comments are not allowed.
I've run into a problem with exporting HTML content from the RadRichTextBox control when exporting a bulleted list. The problem is that each of the list items are surrounded by paragraph tags. So for example if I type something like this:
The following is a list:
- Item 1
- Item 2
- Item 3
I get the following HTML:
<
p
>The following is a list:</
p
>
<
ul
style
=
"list-style-type:disc"
>
<
li
value
=
"1"
><
p
>Item 1</
p
></
li
>
<
li
value
=
"2"
><
p
>Item 2</
p
></
li
>
<
li
value
=
"3"
><
p
>Item 3</
p
></
li
>
</
ul
>
The problem is the <p> tags around the list items which are causing extra space to appear between the list items on the report.
Is there any way to have the editor create list items without putting paragraph tags around them?