Can we pass the AEM form object values to another AEM form ?
Can we pass the AEM form object values(eg: entered in textfield) to another AEM form . Please provide an example
Can we pass the AEM form object values(eg: entered in textfield) to another AEM form . Please provide an example
Dear Jadish,
We are very lucky to work on the fantastic AEM Forms framework build by Adobe!
Dear Adobe has number of wonderful API's that let us deliver such asks!
You may need to write a short script set on Root Panel. where you listen on:
guideBridge.on('elementNavigationChanged', function(event, payload) {
//here we can listen for our payload or select element you may wish to select and set
localStorage.setItem('myCustomValue', value)
}
Then once you load the other form you may wish to load the value on
$( document ).ready(function () {
localStorage.getItem('myCustomValue');
})
[1] Docs AEM forms * JavaScript Examples (adobe.com)
Kindest Regards,
Peter
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.