@sindhusr Please check if you are seeing any error while deploying code. If not, I would suggest here to raise an Adobe ticket as it is a common and we are easily replicate this issue.
@sindhusr It may be you local AEM instance issue. Do you see this error on DEV/QA environments or developers machine also ? Can you once try creating new instance and verify once may not be having this issue
@Kamal_Kishor create one main component based and two bean sling models. Call first bean sling model using @childResource from main component model and similarly second bean model using @childresource from first bean model. import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.slin...
@SateeshRe As mentioned by @arunpatidar there is nothing like providing user and grop based crx/de access. It will be all or node. Though access can be handle with the help of ACL for not to update code, content. config, etc.
@RaviK1 Since we are looking for property change/add event on a Resource, we can make use of specific Listener named "ResourceChangeListener" - https://sling.apache.org/apidocs/sling9/org/apache/sling/api/resource/observation/ResourceChangeList...Sample snippet : (tried and works in my local - AEM 6...
@Mahesh_Gunaje I see it already got answered and accepted by you.you can connect this variable in your WCMUse java class in the form of setter method.Reference: https://itecnote.com/tecnote/aem-6-0-additional-parameters-when-using-data-sly-resource/
@Mahesh_Gunaje Please check HTL specification https://github.com/adobe/htl-spec/blob/master/SPECIFICATION.md#229-resourceYou can't pass parameters but you can add selectors.
@sesmic for this create a bean class having all fields. Inside loop set bean value for every object and set as part of a list. public List<TestBean> getParsysList() {
parsysList = new ArrayList<>();
for (int i = 1; i <= numberOfItems; i++) {
TestBean testBean = new TestB...