cancel
Showing results for 
Search instead for 
Did you mean: 

Why can't I edit this child component in CMS cockpit?

Former Member
0 Kudos

There is a "JobVacancyContainer" component we use on a website, This component includes "JobVacancy" child componentes, which are the actual job descriptions.

Editing the component in CMS cockpit works as expected;

But, there is no option to edit the actual job description component.

How can I add this, so we can edit that as well?

The editor areas are as follows:

JobVacanciesSectionComponent:

 <group qualifier="editorial" visible="true" initially-opened="false">
     <label key="config.general.editorial" />
     <property qualifier="JobVacanciesSectionComponent.headline"/>
     <property qualifier="JobVacanciesSectionComponent.vacancyGroups"/>
     <property qualifier="JobVacanciesSectionComponent.anchor"/>
 </group>

JobVacancyContainerComponent:

 <group qualifier="editorial" visible="true" initially-opened="false">
     <label key="config.general.editorial" />
     <property qualifier="JobVacancyContainerComponent.headline"/>
     <property qualifier="JobVacancyContainerComponent.vacancies"/>
 </group>

JobVacancyComponent (this is where I need to get somehow...?)

 <group qualifier="editorial" visible="true" initially-opened="false">
     <label key="config.general.editorial" />
     <property qualifier="ParagraphComponent.headLine"/>
     <property qualifier="ParagraphComponent.anchor"/>
     <property qualifier="CMSParagraphComponent.content" editor="wysiwyg"/>
 </group>

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Apparently it's not possbile from that screen. What works, however is using the ContentEditor slideout at the bottom of the page, as that shows the child components:

Answers (2)

Answers (2)

former_member635408
Discoverer
0 Kudos

You faced such issue because pop-up overlap for cockpits is disabled by default.

To fix the case just add the next property (where part before first dot is the name of the cockpit) cmscockpit.default.popUpEditor.allowOverlap=true

0 Kudos

I might be wrong, but answering this with my wild guess.

Does the user logging in to WCMS Cockpit have "Read" and "Change" permission to the type?

Former Member
0 Kudos

Well it's on my local development machine with the "admin" user... I didn't set any specific permissions to anything, so if I need to do that, I wouldn't know where...?