Requirement: Need to convert multiline of text into a Rich text editor on entity form using CKEditor in Power apps portal.
Tried Solution: I have tried TinyMCE editor and followed the exact steps which were mentioned in Nicholas Hayduk (https://community.dynamics.com/365/b/engineeredcode/posts/power-apps-portals-rich-text-editor-on-entity-forms) This solution is not the best suit to business requirements since TinyMCE is not an open-source solution.
And Also, tried these line of code which is written below.
$('#YOURFIELDNAME').click(function () {
editor = CKEDITOR.replace(this, { htmlEncodeOutput: true});
editor.on('blur', function(e){
e.editor.destroy();
});
});
Looking forward to some briefed steps on how to convert multiline of text into a Rich text editor on entity form using CKEditor in Power apps portal.