@bartek_887 , sometimes it's an issue with access as well. Please make sure the apache/IIS user has read,write,execute access for the script file/location.Did you try to execute the script manually and see if you were able to run the script?
Please follow below resources and see if that helps.https://experience-aem.blogspot.com/2018/12/aem-6420-content-fragment-editor-add-font-size-color-background-rte-plugin.html https://lhotsetechnologies.com/blog/enable-rte-plugins-for-content-fragment/ http://experience-aem.blogspot.com/2016/07/aem...
Hi @arungm20 The property sling:alias may be set on any resource to indicate an alias name for the resource. For example the resource /content/visitors may have the sling:alias property set to besucher allowing the resource to be addressed in an URL as /content/besucher as well as the original path...
@khushbu16anand on below url you can find lot of info /references on similar topic. https://wttech.blog/blog/2019/how-to-setup-aem-publish-saml-authentication-using-okta/ https://www.bounteous.com/insights/2018/09/24/single-sign-sso-integration-okta-aem-63/ So you may check and see if that helps you...
You can follow below videos where you can find step by step details on how to sync code between AEM & Intellij/Visual studio/Eclipse. I always follow this doc and works for me https://experienceleague.adobe.com/docs/experience-manager-learn/foundation/development/set-up-a-loc... Time stamps: fo...
@koteswarar33345 please check below API and see if that works for you:https://www.adobe.io/experience-manager/reference-materials/6-5/javadoc/index.html?com/adobe/granite/timeline/Timeline.html
@kaltavskii , You can set default property value in the sling model: @Model(adaptables=Resource.class) public class MyModel { @Inject @Default(values="") private String name;}or add a condition to check property value and set default value if it's undefined.