New
Therapeutic Area popup on value change
| Request for Feature Enhancement (RFE) Summary: | When any value in the therapeutic area is changed then i want to open the warning popup |
| Use-case: | If the user changes the value of TA in the ISI field then pop-up appears for "Changing the TA will move the CF to the directory of the newly selected TA" |
| Current/Experienced Behavior: | Only changed value is getting saved |
| Improved/Expected Behavior: | If the user changes the value of TA in the ISI field then pop-up appears for "Changing the TA will move the CF to the directory of the newly selected TA" |
| Environment Details (AEM version/service pack, any other specifics if applicable): | New rte , open any content fragment in the new rte |
| Customer-name/Organization name: | J&J |
| Screenshot (if applicable): |
|
| Code package (if applicable): |
const getProperties = async () => {
await new Promise((resolve) => setTimeout(resolve, 100));
}
return [
{ fieldNameExp: "therapeuticArea" ,
onchange: (newValue) => { console.log("[Log] Therapeutic Area changed to:", newValue); }
},
];
};
this console is not working . im using this in my extensionRegistration |