You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case when we have double or triple nesting of fieldsets scripting doesn't work.
For example:
AemComponent(
path = "default",
title = "Scripted Component"
)
public class ScriptedComponent {
@FieldSet
@Setting(name = "isChecked", value = "true")
private CtaFieldset ctaFieldset;
}
public class CtaFieldset {
@FieldSet
private CtaSettingsFieldset ctaSettings;
}
public class CtaSettingsFieldset {
@DialogField(label = "Open in a new window?")
@Checkbox
@Property(name = "./checked", value = "${@isChecked ? true : false}")
private boolean ctaNewWindow;
}
The text was updated successfully, but these errors were encountered:
smiakchilo
changed the title
[EAK-518] Usage of scripting in nested in each other fieldsets
[EAK-518] Usage of scripting in nested fieldsets
Jun 1, 2024
In case when we have double or triple nesting of fieldsets scripting doesn't work.
For example:
The text was updated successfully, but these errors were encountered: