Hi,In Launch have a Data element of type session Storage, when i do _satellite.logger.log('mySessionStorageJsonObject', _satellite.getVar("mySessionStorageJsonObject")), i see an JSON object like {"userName":"John_Doe","region":"flooded"}.how do i read/push the region value into another DataElement...
Is there a way to access application JS variables in launch script?In our application, we store the data received in service calls into a Javascript variable, how do i access this variable in my Data elements in AEP data collection?, the documentation i looked at point to creating a data element of ...
@Ankit_Chaudhary , thank you. I was looking for a fix on the UI, rather than on the custom code, just curious, does the Class property in my screen shot, does it not take a comma seperated values of multiple CSS classes?
Hi,I want to configure my event, is there any way to specify multiple CSS classes?, i want the event to fire on the condition that the HTML elements that are clicked should have class A AND class B AND Class C. please refer to the screen shot. I want my event to fire when the element iam clicking on...
Hi,newbie to AEP and core and web SDK extension. I have the following set up.I want to fire an event (click event) when the user clicks on an anchor tag link and capture the value/innerText of the link. on debugging in the browser console i see that the value i want is at "event.target.childNodes[0]...
hi Esteban, thanks for the direction and yes it worked. but with a slight change. so, if anyone want to get multiple instances of JMX beans, you need to give a pattern and all the instances that satisfy that pattern are returned. the objects are returned in a set. MBeanServer mBeanServer = Managemen...
Hi, Esteban, thanks for the direction. it is working now. but i have another problem. For the JMX cold sync Mbean, it has multiple instances. how do i get all the instances? for example if you go the JMX page and search by "standby", you will get multiple instances shown in the picture. how do i get...
Newbie to AEM. I have a requirement to read some attributes from the system/console/jmx page. On the JMX page we are looking for Domain org.apache.jackrabbit.oak, and from that domain, we need to read the values of some attributes like AttributeName=Statistics. how do i achieve this?. online i see m...
after few more hours on the internet found this. looks like from webpack 5 automatic polyfills are removed. you can look here https://webpack.js.org/blog/2020-10-10-webpack-5-release/#automatic-nodejs-polyfills-removed.so, we have to manually override these polyfills. looks like this can be achieved...
also, from POM.xml looks like copyover is done by "maven-resources-plugin", so iam a bit confused, where does the webpack copy over ends and "maven-resources-plugin" starts?. when the build is completed, i see main.js, polyfill.js and runtime.js files are created, do we need them? they are articfact...