Expandir la barra de logros de la comunidad.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.

RESUELTAS

jcr:mixin is not editable

Avatar

Level 7

I need to update the value of jcr:mixin but it is showing as not read-only in my local. How can i resolve this?

1 solución aceptada

Avatar

Respuesta correcta de
Community Advisor

Hi @Shaheena_Sheikh,

What you can observe on your instance is correct behavior. To edit list of mixins from crx/de you have to use dedicated option from contextual menu, select Mixins... option

mixin.jpg

From code you can use addMixin and removeMixin methods from Node api:

 

node.addMixin("mix:lockable");

node.removeMixin("mix:lockable");

 

Ver la solución en mensaje original publicado

1 Respuesta

Avatar

Respuesta correcta de
Community Advisor

Hi @Shaheena_Sheikh,

What you can observe on your instance is correct behavior. To edit list of mixins from crx/de you have to use dedicated option from contextual menu, select Mixins... option

mixin.jpg

From code you can use addMixin and removeMixin methods from Node api:

 

node.addMixin("mix:lockable");

node.removeMixin("mix:lockable");