AEM 6.1 Reference component references are not showing up in Classic UI - aem

Was going to the AEM 6.1 Page-author documentation for reference component. Strange is am not able to see any references link in Classic UI (i.e. via the sidekick Page tab -->Show References)
Steps to reproduce.
Drag and drop OOTB Text component in /content/geometrixx-outdoors/en/men/coats page and author some content.
Drag and drop OOTB Reference component in /content/geometrixx-outdoors/en/equipment page
Edit the Reference component and select the text component that has been authored in above step-1.
Refreshed both the pages, And on /content/geometrixx-outdoors/en/men/coats page sidekick-->Page tab --> click on Show References Expected is to show a dialog popup with all the references available for that page.
When i test the same with Touch UI it shows correctly the text under Lent Content section
Step1
Step2
Step3
Step4
Touch UI

Related

In Orbeon forms, how do I add a sidebar page navigator for multi-page forms?

I am trying to find documentation to duplicate the following Left-Hand-Side-Bar menu found in the link below, but am having no luck: https://demo.orbeon.com/demo/fr/orbeon/w9/edit/4a83b4cf2b905fbe105d7e57ddc5597b5e78c0a3
What you are seeing there is what is called the wizard view. In essence, it transforms the top-level sections of your form into sections of a "wizard".
You can enable this in the Form Settings dialog (in Form Builder, click on the gear icon at the top left of the page), in the View Options tab.

Displaying the wiki content dynamically beside each image

I want to display images of 10 people on my dashboard, when i hover the image dynamically it needs to display a wiki page to the side of each image related to that person, how do i achieve this in tableau?
Here are the steps after you have a dashboard with your people on one of the charts. My example uses the pesticide list from the most recent #makeovermonday.
In your dashboard, drag the web page object in.
Click the option dropdown of that new object and click Add URL Action.
In the popup place the main portion of your wikipedia url in the box and select your people field which will become the dynamic portion of the URL. Mine is pesticides.
Change Run action on to Hover
Now when you hover on your main chart it will update the web page object with the person hovered on. I just hovered on Atrazine in this image
You will probably have to update your people names to make sure they match wikipedia's url.

Issue in using dialog in Touch UI of AEM 6.2

I am working on AEM 6.2. I am creating a dialog (cq:dialog) for touch UI. After creating a page i am not able to see my component in the design mode of the touch UI while trying to enable it and thus the dialog not enabled. Tried creating a simple dialog (using create->dialog) for classic UI for the same component and now i can see my component along with its dialog in touch UI of the page. Is it mandatory to create dialog for both views (Touch & Classic) to get the dialog enabled and working on both UI's?
No it is not mandatory to create a dialog node. However, some node is required indicating it is an editable component.
If you want to see your component in design view then you can create either of the nodes:
cq:editConfig [cq:EditConfig]
dialog
design_dialog
So in your case if you dont want a dialog node you can work with editConfig.

Adding custom xtype to page properties

I've created a custom xtype that I want to use in a page property dialog. It works great when I bring up the page and select page properties from the sidekick, but I can't figure out where to place the custom javascript I've created so its available from the sites menu in the main page. There the custom xtype fails to load and the new section fails to work.
You need to place your script inside a new clientlib, defined with the category cq.wcm.admin. All clientlibs with this category are automatically included on the site admin. If you add the category cq.wcm.edit, your script will be included on the page editor as well.

Hyperlink to Eclipse editor page

I am trying to write an editor for a particular type of file in Eclipse which has multiple pages, just like the PDE editor.
How do I get a hyperlink in the main Overview page to point at one of the individual pages?
I've got the hyperlink drawn but I don't know how to link it to the actual page so that when a user clicks it, the page view changes.
Any ideas?
Follow this recipe:
Create the main page and all the sub pages
Add links
Add HyperlinkAdapter to the links using link.addHyperlinkListener()
In linkActivated() you can switch the page with formEditor.setActivePage(...)