Hello,
I want to add ck editor into choices. And I did it but I have a questions.
TypeScriptSurveyCore.Serializer.addProperty("itemvalue", {
name: "ckeditor",
type: "ckeditor",
displayName: "CK Editor",
isSerializable: true,
showMode: "form",
isDynamicChoices: true,
onSetValue: (obj: any, value: any, jsonConv: any) => {
obj.text = value;
},
});
Questions:
- How to make label text in choices the same as in the ck editor?
- How to change ck editor text when label was changed in choices or in the control?
- How to add "+" button to custom checkbox control?
- How to add possibility to change label in the custom control?
Thanks,
Anton