Hi Team,
I have a Column control component and i'm aware of the by using cq:template node we can set default no.of columns
ex: columnAmount="2". (this is fixed across all templates)
But, i wanted have different no.of columns for 'Column control' component on load for different templates
I searched and couldn't found any solution.
Thanks in advance!
Raju.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @Rajumuddana
(though we change values in component drop down, our code still consider design dialog value only).
Your code should read values from component first then design dialog value as a fallback/initial value.
Hi @Rajumuddana
Are you using dynamic/editable template or static template?
you can initialise default value from code as well, in Author instance when component is dragged add a custom column property from sling model.
With dynamic template, you can set the initial properties in the initial node
Hi @arunpatidar ,
Thanks for your Response.
am i doing it in wrong way?
Hi @Rajumuddana
You need to add these entries to the component node, not to the jcr:content
.
Alternatively, you can modify your code to utilize the design dialog to read the number of column properties if none are set. This allows the property to be set differently for each template.
Hi @arunpatidar ,
Thanks for the reply.
If i understood this correctly,
thought we use 'design dialog' and set value and modify java code to read from 'design dialog', this would always load fixed columns unlike the regular 'column control' component (though we change values in component drop down, our code still consider design dialog value only).
Thanks,
Raju.
Hi @Rajumuddana
(though we change values in component drop down, our code still consider design dialog value only).
Your code should read values from component first then design dialog value as a fallback/initial value.
Hi @arunpatidar,
Thanks for you response again!
I did try the way you suggested and it worked like a champ!
For reference:
@Inject
@Getter
@Via("resource")
private int columnAmount;
@SlingObject
private ResourceResolver resourceResolver;
@CurrentPage
private Page currentPage;
private int columnAmountFromDD = 0;
@PostConstruct
protected void init() {
ContentPolicyManager contentPolicyManager = resourceResolver.adaptTo(ContentPolicyManager.class);
if (contentPolicyManager != null) {
ContentPolicy contentPolicy = contentPolicyManager.getPolicy(currentPage.getContentResource());
if (contentPolicy != null) {
String columnAmountDD = (String) contentPolicy.getProperties().get("columnAmount");
columnAmountFromDD = Integer.parseInt(columnAmountDD != null ? columnAmountDD : "0");
}
}
}
public boolean isDefaultColumnAmount() {
return getColumnAmount() == 2;
}
public int getColumnAmount() {
if (columnAmount == 0) {//No value is authored in component dialog.
if (columnAmountFromDD != 0) {//Value from Design Dialog.
columnAmount = columnAmountFromDD;
} else {
columnAmount = 2;//None of them authored, default value.
}
}
return columnAmount;
}
<sly data-sly-use.columnControl="com.abc.xyz.core.components.models.columncontrol.ColumnControlModel"/>
<sly data-sly-test="${columnControl.isDefaultColumnAmount}">
<div class="column-control__flex flex gap-7.5 ${columnControl.switchOnMobile ? 'flex-col-reverse' : 'flex-col'} md:flex-row">
<div class="column-control__flex-item basis-full md:basis-${columnControl.leftColumnWidth}/12">
<div data-sly-resource="${'column-1' @ decorationTagName='div', resourceType='ccx-commons/components/utils/responsivegrid'}"></div>
</div>
<div class="column-control__flex-item basis-full md:basis-${columnControl.rightColumnWidth}/12">
<div data-sly-resource="${'column-2' @ decorationTagName='div', resourceType='ccx-commons/components/utils/responsivegrid'}"></div>
</div>
</div>
</sly>
<sly data-sly-test="${!columnControl.isDefaultColumnAmount}">
<div class="grid grid-cols-1 gap-7.5 md:grid-cols-${columnControl.columnAmount} gap-y-3.75 md:gap-x-3.75" data-sly-test="${columnControl.columnAmount > 2}">
<div data-sly-resource="${'column-1' @ decorationTagName='div', resourceType='ccx-commons/components/utils/responsivegrid'}"></div>
<div data-sly-resource="${'column-2' @ decorationTagName='div', resourceType='ccx-commons/components/utils/responsivegrid'}"></div>
<div data-sly-resource="${'column-3' @ decorationTagName='div', resourceType='ccx-commons/components/utils/responsivegrid'}"></div>
<sly data-sly-test="${columnControl.columnAmount > 3}">
<div data-sly-resource="${'column-4' @ decorationTagName='div', resourceType='ccx-commons/components/utils/responsivegrid'}"></div>
</sly>
</div>
</sly>
Thanks once again @arunpatidar , @HrishikeshKa
HI @Rajumuddana ,
By default, the Column Control component in AEM allows you to set a fixed number of columns using the columnAmount property. However, if you want to have different numbers of columns for the Column Control component on load for different templates, you can achieve this by customizing the component's logic.
Here's a general approach to implement this customization:
Create a new component that extends the Column Control component. This new component will serve as a wrapper for the original Column Control component.
In the new component, create a new dialog field (e.g., templateColumns) to specify the number of columns for each template. This field will allow authors to set different numbers of columns for different templates.
In the new component's HTL file, retrieve the current template path and use it to determine the number of columns to display. You can use the templateColumns field value from the dialog to map the template path to the corresponding number of columns.
Pass the calculated number of columns to the original Column Control component as a property.
Here's an example of how the HTL file of the new component could look like:
<sly data-sly-use.templatePath="com.adobe.cq.wcm.core.components.models.TemplatePath">
<!-- Get the current template path -->
<sly data-sly-test="${templatePath.templatePath}">
<!-- Determine the number of columns based on the template path -->
<sly data-sly-test="${properties.templateColumns}">
<sly data-sly-test="${properties.templateColumns[templatePath.templatePath]}">
<!-- Pass the number of columns to the original Column Control component -->
<sly data-sly-resource="${'columncontrol' @ columnAmount=properties.templateColumns[templatePath.templatePath]}"></sly>
</sly>
</sly>
</sly>
</sly>
In this example, the templatePath object is used to retrieve the current template path. The templateColumns field from the dialog is used to map the template path to the corresponding number of columns. The calculated number of columns is then passed to the original Column Control component using the columnAmount property.
By customizing the Column Control component in this way, you can set different numbers of columns for the component on load for different templates in AEM 6.5.
Hi @HrishikeshKa ,
Thanks for you response.
I didn't get that completely.
first of all,
let me know if i'm not clear.
Hi @Rajumuddana ,
Sure, I understand now. You want the Column Control component to automatically adjust the number of columns based on the template it's placed in upon initial creation, without requiring authors to specify it manually. After the initial setup, authors should be able to adjust the number of columns through a dropdown in the component dialog, and this setting should persist across different pages/templates.
To achieve this:
Automatic Adjustment of Columns on Initial Creation:
Persistent Column Count Setting:
Here's how you can modify the approach to achieve this:
Automatic Adjustment of Columns on Initial Creation:
Persistent Column Count Setting:
This modified approach should meet your requirements: automatically setting the column count based on the template upon initial creation and allowing authors to adjust the column count through the component dialog, with the selected setting persisting across different pages/templates.
@Rajumuddana I hope you found the AEM community helpful. We look forward to seeing you return as either a learner or a mentor. The community flourishes with SMEs like you. Happy AEM learning!
Views
Likes
Replies
Views
Likes
Replies