The multifield below is not retaining more than one item. The child node only stores one item in content path. Second item is saved directly on the component node itself. Need guidance in understanding error in the structureMultifield dialog: <multifieldDialog
...
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?