In AEM 6.5 when using cq/gui/components/authoring/dialog/fileupload for our drag and drop field which we click on pick we get a "Type to Search" field at the top of the dialog where-in we can input the path. However on AEMaaCS it is just a header with "Select Path" text. Is it possible to get the sa...
I am using cq/gui/components/tagspicker in my component dialog and want to display the selected tags in HTL. I have tried directly by using name property but this only displays the first selected tag. How to display all selected tags from component dialog in frontend?
Can i use the JS at /libs/cq/gui/components/authoring/dialog/dropdownshowhide/clientlibs/dropdownshowhide/js/dropdownshowhide.js for multiple values of the same dropdown.For eg: I want a container to be shown when val1 is selected and also when val2 is selected in the dropdown. I have tried comma se...
This code snippet worked fine until i changed structure of my componentMy container component is having a superType of accordion component so node content structure is +Container +card1 +card2model code snippet@getter
@ChildResource
private List<ChildModel> children; However here it is failing to f...
It is still in development phase. The node content structure is as below @arunpatidar @Tethich Container --child1 --child2I find the childResources annotation method to be easier but how do i go about making the node structure to have an intermediary node such as below, then i can directly target ...
But how do i create the intermediary node? Do i create an intermediary in the container node structure itself so that when i add child nodes its added under the intermediary or should this be dynamic on addition of child nodes?
Hey , went through the example , just to clarify by using @ChildResource annotation above a List<childModel> , we should we able to get the list of all child nodes of that type?
I have a container component and multiple 'card' child components. In the sling model of the container component i want to obtain a list of card component sling models.Container component -card1 -card2 -card3I want a list of card models to accessible in container component model so that in HTL...