Touch UI dialog losing edit/config options
We're running AEM 6.3-SP2 on a Linux environment and we have a recurring--but intermittent--problem with configuring our component dialogs in the Touch UI environment.
The issue is that periodically ALL components will have their edit options removed, just leaving the Insert and Group options.
We can fix the problem by simply editing any component's cq:editConfig/@cq:actions property through the CRXDE and saving.
This is an example of a typical one of our component's cq:editConfig node configurations:
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
jcr:primaryType="cq:EditConfig"
cq:actions="[text:Settings,-,EDIT,DELETE,COPYMOVE]"
cq:disableTargeting="true" />
Classic UI is unaffected.
What is causing the Touch UI component to lose edit options and how can we make desired options permanent?