Reputation: 1
We are using Richtext editor component in our site using in-place editing feature. Can someone please tell me how to hide edit bar or authoring featuring for a particular page for richtext in-place editing component. I am able to do this for dialog specific component but facing issue for in-place editing rich text .
Upvotes: 0
Views: 1287
Reputation: 31
There is a property named active{Boolean}
which can be set on the cq:inPlaceEditing
child node of the component's cq:editConfig
node. Setting this property to false
will disable the in-place editing of the richtext editor component.
However, note that this will disable the inline editing in all pages including this component.
Upvotes: 1
Reputation: 11
To remove the inline editing of any component in the "cq:editConfig" node you remove "cq:inplaceEditing" node.
Upvotes: 0