How much Dispatcher can help in caching the SPA page?I have a non SPA page built with Core componentsSimilar SPA page with same set of componentsIn case 1, Dispatcher will cache entire HTML(with content) of page.How dispatcher works in case 2?In this scenario which page will perform better?
@sravs508Check your project has recommended structure for AEMaaCS or not. Check below link for AEMaaCS recommended strecture.https://experienceleague.adobe.com/docs/experience-manager-cloud-service/implementing/developing/aem-project-content-package-structure.html?lang=en#recommended-package-structu...
Hi @sravs508 Refer: https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/archetype/overview.html?lang=en#usageSet aemVersion=cloud for AEM as a Cloud ServiceAG
Hi @vasgurug Suggested to use coral 3 widget(s) (granite/ui/components/coral/foundation/form/numberfield), if you want to get is work with coral 2 widget parse the value to Double while rendering, coral 2 widget trims .0 on field blur.-AG
Hi @v1101 Set the value to a data attribute and get it in client side javascript.HTL:<div data-prod-desc="${productData.prodDescription}" > ... </div>Javascript:$("div[data-prod-desc]").data("prodDesc")-AG
Hi @Jeanmaradiaga The init_component_name() function is not declared within the script tag, that is the reason why you are getting ReferenceError: Can't find variable: init_component_name. <script>
// No init_component_name function decleration here
window.bootstrap_component(function() {
...
Open the dialog and check once in browser developer tools source panel, your listener script is loading in page or not. Use extraClientLibs property it is not loading. Try once removing the property as well.
Create a node type nt:unstrectured under tab/items and add below propertiessling:resourceType String granite/ui/components/coral/foundation/includeclientlibscategories String[] your-categoriesThis should work, I have tested in 6.5.