Set a CQ5 component to editable or not editable

后端 未结 1 515
我寻月下人不归
我寻月下人不归 2021-01-06 14:45

Is it posible if i want to set a cq5 component editable in page A, but not editable in page B.

For example: at page A, i have C component we allow authors to open d

1条回答
  •  囚心锁ツ
    2021-01-06 15:49

    You can set ComponentContext.BYPASS_COMPONENT_HANDLING_ON_INCLUDE_ATTRIBUTE before the include, and remove it after the include.

    Set:

    slingRequest.setAttribute(ComponentContext.BYPASS_COMPONENT_HANDLING_ON_INCLUDE_ATTRIBUTE, true); 
    

    Remove:

    slingRequest.removeAttribute(ComponentContext.BYPASS_COMPONENT_HANDLING_ON_INCLUDE_ATTRIBUTE);
    

    More details are here: https://dev.day.com/docs/en/cq/current/developing/boilerplates.html

    You can write a Sling component filter:

    And you can check the page and the component, and if you want to disable editing, just set the attribute, do the filter, and unset the attribute...

    0 讨论(0)
提交回复
热议问题