<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Adding tool tip for fields in format pane in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1138819#M3222</link>
    <description>&lt;P&gt;We wanted to add a user friendly message to an input box in the formate pane which was added to our custom visual. We did specify description along in the property but is dosen't seem to appear any where. Can we add a tool tip / friendly message for input boxes in the formate pane.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jun 2020 12:04:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-06-03T12:04:13Z</dc:date>
    <item>
      <title>Adding tool tip for fields in format pane</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1138819#M3222</link>
      <description>&lt;P&gt;We wanted to add a user friendly message to an input box in the formate pane which was added to our custom visual. We did specify description along in the property but is dosen't seem to appear any where. Can we add a tool tip / friendly message for input boxes in the formate pane.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 12:04:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1138819#M3222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-03T12:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Adding tool tip for fields in format pane</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1140070#M3225</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Assuming I'm reading this right, do you mean a message in the property tooltip, like this?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 346px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/287876i8CEE23EC6BDF57A0/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If so, then you indeed just need to add a &lt;FONT face="courier new,courier"&gt;description&lt;/FONT&gt; property to your object declaration. I note that you say you've done this, but I'll just include what I did for reference so that you can cross-check:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    ...
    "myTextProperty": {
        "displayName": "My Text Property",
        "description": "This should be a user friendly message...",
        "type": {
            "text": true
        }
    }
    ...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is how you've set it up at your end, we might need a bit more info to assist, but this is all I've ever had to do.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;P.S.&amp;nbsp;While we're on the subject, it might be handy to know that you can also use the JavaScript string escape sequences (such as &lt;FONT face="courier new,courier"&gt;\n&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;\t&lt;/FONT&gt;) in these properties, as well as unicode, e.g.:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 369px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/287881i7C99CCD52D8031A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    ...
    "myTextProperty": {
        "displayName": "My Text Property",
        "description": "This should be a user friendly message...\n\nAnd this is a new paragraph within the tooltip\n\n\t• This kind of looks like a bullet\n\nAnd now we're back to normal ",
        "type": {
            "text": true
        }
    }
    ...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(the forum's code formatter seems to strip out the emoji but it is in the code I pasted)&lt;/P&gt;
&lt;P&gt;HTML won't work in here though, so if you want to get fancy, you have to work with the above.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 22:00:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1140070#M3225</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2020-06-03T22:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding tool tip for fields in format pane</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1140615#M3226</link>
      <description>&lt;P&gt;Thank you. It worked but we are getting tooltip only on hover over the label. Can we get it when we hover over the input box ?&lt;/P&gt;&lt;P&gt;Or Is there a way to show the message below the input box. Similar as a label&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 05:03:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Adding-tool-tip-for-fields-in-format-pane/m-p/1140615#M3226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-04T05:03:41Z</dc:date>
    </item>
  </channel>
</rss>

