This question is locked. New answers and comments are not allowed.
There are cases, where RadEditor does not generate XHTML -> i.e. attribute values of html elements are not in quotes - They are not there in MOSS Display Mode, in Editing Mode they are there. ( <property name="ConvertToXhtml">True</property> is set)
Tested with Rad Editor for MOSS Full (Trial Version, 7.1.1)
1. Case: We have the following Snippet definition in ToolsFile.xml:
</snippet>
<snippet name="List next">
<![CDATA[
<div class="list next">
<p class="list-introduction">Introduction</p>
<ul class="bullet">
<li>First</li>
<li>Second</li>
</ul>
</div>
]]>
In Display Mode we get (missing qoutes e. g in case of attribute class):
<div class=list>
<p class=list-introduction>Introduction</p>
<ul class=bullet>
<li style="padding-right:0px;background-position:4px 6px;padding-left:18px;padding-bottom:0px;padding-top:0px">First</li>
<li style="padding-right:0px;background-position:4px 8px;padding-left:18px;padding-bottom:0px;padding-top:2px">Second</li>
</ul>
</div>
2.Case -> MOSSLinkManager:
The generated link misses quotes for attribute values in Display Mode:
<a class=link4design id=bookmark title=TestTooltip href="/sites/siemens1/en/corp/Pages/simple1.aspx">TestLink</a>
(Attribute values are set in AssetPickers.s AnchorHtmlElement)
Thank you for help,
Hugo
Tested with Rad Editor for MOSS Full (Trial Version, 7.1.1)
1. Case: We have the following Snippet definition in ToolsFile.xml:
</snippet>
<snippet name="List next">
<![CDATA[
<div class="list next">
<p class="list-introduction">Introduction</p>
<ul class="bullet">
<li>First</li>
<li>Second</li>
</ul>
</div>
]]>
In Display Mode we get (missing qoutes e. g in case of attribute class):
<div class=list>
<p class=list-introduction>Introduction</p>
<ul class=bullet>
<li style="padding-right:0px;background-position:4px 6px;padding-left:18px;padding-bottom:0px;padding-top:0px">First</li>
<li style="padding-right:0px;background-position:4px 8px;padding-left:18px;padding-bottom:0px;padding-top:2px">Second</li>
</ul>
</div>
2.Case -> MOSSLinkManager:
The generated link misses quotes for attribute values in Display Mode:
<a class=link4design id=bookmark title=TestTooltip href="/sites/siemens1/en/corp/Pages/simple1.aspx">TestLink</a>
(Attribute values are set in AssetPickers.s AnchorHtmlElement)
Thank you for help,
Hugo