Hello @kevingtan,Yes, this is possible. You can call the conditional selectors this way -><sly data-sly-resource="${@ resourceType='/path/to/menu', selectors=page.collapsedMenu ? 'collapsed' : '' }"></sly>
Hello @EV909 ,One of the easiest way to fix your problem is set the Tab Panel policy. To do that ->1. Allow the Tab Panel component in the main layout container.2. Set Tab Panel component policy3. Remove the Tab Panel policy from the main layout container
Hello @aem1234567 ,Since you realized this is a CSS issue, you can do one thing load CSS file differently. One set of for the author and other set for publish.<sly data-sly-use.clientlib="/libs/granite/sightly/templates/clientlib.html">
<sly
data-sly-test="${wcmmode.preview || wcmmod...
You are proabably missing allowproxy property-
allowProxy: If a client library is located under /apps, this property allows acces to it via proxy servlet.
In order for the client libraries under /apps to be accessible, a proxy servelt is used. The ACLs are still enforced on the client library fol...
You are right, "all models/classes located under internal package are not exported by Core Components bundles". This is not the way we extend the core component functionality.Here are the steps you can follow.1. Create your own Extended interface
2. Implement the interface
Overwrite other necessar...
Hello, the carousel component was inherited from the PanelContainer component. That component is responsible for reading the list.
See the Caurosel component Model Class that extends the AbstractPanelContainerImpl.
public class CarouselImpl extends AbstractPanelContainerImpl implements Carousel...
If I am not wrong you are trying to get the request body to POJO class. In that case, you can use Gson,
Gson gson = new Gson();
MyPojo mypojo = gson.fromJson(request.getReader(), MyPojo.class);
Hello @varaande ,Based on your AEM Version you need to choose your archetype version.Here is the link you can get the AEM Archetype supported version: https://github.com/adobe/aem-project-archetype/blob/develop/VERSIONS.md
All available properties for a new project: https://github.com/adobe/aem-proj...
For your SP 6.5.0 version you can follow this link:
Archetype Historical Support: https://github.com/adobe/aem-project-archetype/blob/master/VERSIONS.mdAEM Project Archetype Details: https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/archetype/overview.htmlAs...