Hello,
When I have the Telerik Rad Editor set to insert Paragraph tags for new lines, they also tend to insert additional information from the current line. This happens when the user hits Enter or when they click the New Paragraph tool bar item.
For example, I have added some custom buttons that insert placeholders into the code that I will then parse out with actual values as necessary. I am inserting HTML like this: <span title="Speakers">{{Speakers}}</span>
I like putting it in a span with a title so when they hover their mouse over it they see some additional information.
But if this is on one line, surrounded by it's own paragraph tag, when I go to add another paragraph after it (to add additional text or placeholders or anything) user either the keyboard or toolbar item, the new paragraph will be:
<p><span title="Speakers"> </span></p>
Instead of just: <p> </p>
What can I do to insert JUST an empty paragraph? Why is it pulling my span tag in, too?
Thanks.