Reputation: 2521
I would like to know if this is possible to add special character into the CRM (4.0) SiteMap entity (SiteMap XML files). I mean when we modify the menu located on the left I would like to have some HTML encoded character. By example ® or some other special characters.
I tried to do the following:
<Area Id="MyArea" Icon="/_imgs/resourcecenter_24x24.gif">
<Titles>
<Title LCID="1033" Title="Title english &reg;"/>
<Title LCID="1036" Title="Title french &reg;"/>
</Titles>
<Descriptions>
<Description LCID="1033" Description="Description EN &reg;"/>
<Description LCID="1036" Description="Description FR &reg;"/>
</Descriptions>
<Group Id="MyArea_Group">
<SubArea Id="mySubArea"
Url="https://toMyWebSite/Page.aspx" AvailableOffline="false" >
<Titles>
<Title LCID="1033" Title="My Item"/>
<Title LCID="1036" Title="My Item French"/>
</Titles>
</SubArea>
</Group>
</Area>
This actually show "Title English ®" in my left menu area instead of "Title English ®".
Does anyone have a solution?
(Note: I already tried to put the character directly with "alt-0174" but it didn't worked.)
Upvotes: 0
Views: 1572
Reputation: 4686
EDIT: My initial response was incorrect. Use the numbered HTML escape (in this case ®
) to get those characters into the sitemap.
Just put ®
instead of what you have. The &
is being escaped and then it just outputs the characters reg;
because that isn't an HTML escape code.
Upvotes: 1