Embeddables - Widget Configuration

I am working on a widget configuration, I want to allow the HTML editor, however I am not seeing the Embeddable i created. They do appear when I am replying to a thread

Here is my Configuration for the field:

<property id="headerDescription" labelResourceName="headerDescription" dataType="Html" template="html" enableRichEditing="true" rows="1" columns="40" contentTypeId="" />
<property id="headerButtons" labelResourceName="headerButtons" dataType="Html" template="html" enableRichEditing="true" rows="1" columns="40" contentTypeId="" />

Parents Reply Children
  • Thanks for this it also solved an issue I has when using a html config property in a custom widget and ottb embeddable such as emojis were not being rendered 

    For ref we needed to use

    <property id="calloutBody" labelResourceName="calloutBodyName" dataType="html" template="html" enableRichEditing="true" rows="20" columns="40" contentTypeId="DF237622-6CC3-4FC2-8555-EF4FB2656444" />
    


    And in the widget (which was on a custom page) added the render call

    $core_v2_ui.Render($core_v2_widget.GetHtmlValue('calloutBody', 'tbc')))