day-cq

Component group not showing in sidekick (Adobe CQ)

天大地大妈咪最大 提交于 2019-12-06 04:06:36
Im using adobe CQ 5 and I have created a bunch of components. For all these components I have set allowedParents to */parsys and I have defined the componentGroup as xyz . My page contains the parsys component. When I enter the parsys design mode, the list of allowed components does not show the component group xyz . Please help! Thanks in advance Kindly make sure that your components jcr:title is not the same as the component's name. For Eg: if the name of the component is text , then the title should at least be Text and not text. Change it and then check in the design mode, it will list

Have anyone here used DAY CQ? [closed]

穿精又带淫゛_ 提交于 2019-12-02 18:50:15
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Anyone here develops on DAY CQ? Can advise what is the forum or community to seek for help? I tried to sign up to their google groups but am not able to do so 回答1: Day CQ is a Web Content Management platform based on Java and the JCR specification. Contrary to BoltClock, I would still recommend searching for Day

Have anyone here used DAY CQ? [closed]

╄→尐↘猪︶ㄣ 提交于 2019-12-02 11:56:10
Anyone here develops on DAY CQ? Can advise what is the forum or community to seek for help? I tried to sign up to their google groups but am not able to do so Day CQ is a Web Content Management platform based on Java and the JCR specification. Contrary to BoltClock, I would still recommend searching for Day CQ as Adobe does not seem to have really re-branded the Day products. First I would try searching Day's Documentation at http://docs.day.com . Dacare is Day's hub for all of their support and such at http://www.day.com/content/daycare.html , you can find links to support groups,

Pass data from one component to another in adobe CQ

孤者浪人 提交于 2019-11-30 18:35:19
问题 I'm using Adobe CQ5. I have made two components that are independent of each other. However, I want to use data from one component in the other one. How do I achieve this? How can I make two components interact with each other? Thanks in advance. 回答1: You can use javax.jcr.Node and javax.jcr.Property interface to get properties of another component. For example, you have added component1 and component2 to page1. In the repository you should have structure similar to this: /content /project

Determine runmode in Adobe CQ

痴心易碎 提交于 2019-11-30 14:50:05
问题 How do I programmatically know which run-mode the instance is running? I created a custom tag that provides the config depending on the instance run-mode, but I can not determine the current run-mode. I found a method that returns a list of run-mods instance: SlingSettings settings = ...get from BundleContext... Set<String> currentRunModes = settings.getRunModes(); But I can not get the objects SlingSettings or BundleContext. How can I get these objects or perhaps there is another way to get