survey-creator icon indicating copy to clipboard operation
survey-creator copied to clipboard

Survey Creator Custom Options - Cannot show Help Description for a custom Boolean option

Open JaneSjs opened this issue 3 years ago • 0 comments

I created a custom Boolean property and want to show help description for it. However, the following code doesn't work - a help icon isn't shown for a custom Boolean property.

Survey.Serializer.addProperty(
  "survey", 
   {
     name: "sampleProp:boolean",
     category: "Watermark"
  }
);
const translations = SurveyCreator.localization.getLocale("");
debugger;
translations.pehelp.sampleProp = "Sample tip here";

image

The issue has been reported at https://surveyjs.answerdesk.io/ticket/details/T10340.

JaneSjs avatar Aug 15 '22 09:08 JaneSjs