No Longer Reproducible
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Kyle StiemannKyle Stiemann(Deactivated)Reporter
Kyle StiemannKyle Stiemann(Deactivated)Components
Fix versions
Affects versions
Priority
Low
Details
Details
Assignee
Kyle Stiemann
Kyle Stiemann(Deactivated)Reporter
Kyle Stiemann
Kyle Stiemann(Deactivated)Components
Fix versions
Affects versions
Priority
Zendesk Support
Zendesk Support
Zendesk Support
Created August 23, 2018 at 9:13 AM
Updated May 28, 2019 at 8:12 AM
Resolved May 28, 2019 at 8:10 AM
Steps to reproduce:
Change the
portal:inputRichText
attributes for thegeneral.xhtml
use case to includeskipEditorLoading="false"
(to attempt to load the required JS forinputRichText
during Ajax) andrendered="#{!showcaseModelBean.selectedComponent.rendered}"
(to ensure that theinputRichText
is not loaded on initial page render).Navigate to the
portal:inputRichText
"General" example.Click the Rendered check box.
If the bug still exists, the
portal:inputRichText
will not appear, and the following message will appear in the browser logs:If the bug is fixed, no error message will appear, and the
portal:inputRichText
will appear.Workaround
To work around this issue, always load the
portal:inputRichText
withrendered="true"
on the initial page load (to ensure all the necessary resources are loaded). If you want to still hide the rich text editor on initial load, then setstyle="display: none;"
and unset that via JavaScript (document.getElementById('#{inputRichText.clientId}').style.display = null
) when you want to show the rich text editor.