Solved
jcr:mixin is not editable
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?
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?
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

From code you can use addMixin and removeMixin methods from Node api:
node.addMixin("mix:lockable");
node.removeMixin("mix:lockable");
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.