2

Is there any way to break a line in ToolTipTitle and ToolTipDescription of a MS CRM 2011 Ribbon? The code below puts a line break just in the title, but not in the tooltip texts (texts of tooltip are “onetwo” using this code):

<Button Id="tmpBut" Command="tmpCmd" 
LabelText="one&#x200b;&#x200b;two" 
ToolTipTitle="one&#x200b;&#x200b;two" 
ToolTipDescription="one&#x200b;&#x200b;two" 
TemplateAlias="isv" Image16by16="/_imgs/ribbon/Activate_16.png" 
Image32by32="/_imgs/ribbon/Activate_32.png" />
Greg Owens
  • 3,878
  • 1
  • 18
  • 42
jcjr
  • 1,503
  • 24
  • 40

1 Answers1

4

Untested, however a search of the CRM SDK (Community) content suggests this for the Description attribute:

&#x0a;&#x0d;
Greg Owens
  • 3,878
  • 1
  • 18
  • 42
  • Tested. Works (for description). Thanks. (Looking at the page, it seems I foolishly missed the community content.) – jcjr Nov 29 '12 at 13:00