In my DCT, I have a TinyMCE textarea.I wrote the following code to set the default value in it on event OnReplicantAdded.function UpdateFields(item){ var entries = item.getChildren(); for (var j=0; j IWDatacapture.getItem(entries.getName()+"/point").setValue(“My default value”); alert(IWDatacapture.getItem(entries.getName()+"/point").getValue())); }}IWEventRegistry.addItemHandler("/Content/Part ","OnReplicantAdded", UpdateFields);Here I am unable to set the my default value, however I can get the value using IWDatacapture.getItem(entries.getName()+"/point").getValue());If I change the field to normal textarea (which means not external-editor) the same code is working fine. But I want the TinyMCE editor there.How can I set the default value for Tinymce editor textarea field,Please suggest.Thank you in advance
did you ever get a workaround / find a fix for this problem?