Hello,
In the portal, when adding a comment to an incident, I would like to set up a rich text tool to format the text when commenting on the portal. Is it possible to change the font, the colour and the bolding of the text? Is this possible?
And how can I access this form.
Thank you in advance for your help.
Hi, please take a look at this article to see if it helps: Engineered Code - Blog - Power Apps Portals: Rich Text Editor on Entity Forms
Power Apps Portals Super User
Thank you for the reply. But I would like to know how to access this form when a click on add comment, so that I can modify it.
Hi @mnd ,
Unfortunately, we cannot configure the popup window via the default Add comment button. You could in theory create your own custom button that will open your own popup with the custom rich text control and use Web API to create portal comments.
@mnd technically you can always inject JS to the modal, something like:
$(document).ready(function(){
var modal = $("div.modal-dialog").find("div[data-url*='AddPortalComment']")
var commentBox = modal.find("textarea[aria-label='Comment']");
commentBox.hide();
});
Power Apps Portals Super User