Edit in GitHubLog an issue

Setting default field properties

This feature allows third-party developer set HTML properties and handlers to any field.

Example

Copied to your clipboard
function ExtensionRegistration() {
const init = async () => {
const guestConnection = await register({
id: extensionId,
methods: {
field: {
getProperties: () => {
return [
{
fieldNameExp: '^address_autocomplete$',
onChange: (value) => {
// logic here
},
},
];
},
},
},
});
};
init().catch(console.error);
return <Text>IFrame for integration with Host (AEM)...</Text>;
}

Allowed Properties

  • onChange(value) - is a callback function that gets triggered whenever there is a change in the field's value
  • disable - disable/enable CF Editor field

API Reference

FieldTypeRequiredDescription
fieldNameExp
string
✔️
RegExp for field name
onChange(value)
func
Callback function that gets triggered whenever there is a change in the field's value
disabled
boolean
disable/enable CF Editor field
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.