Solved
CheckBox_Core_Component
Hi @16227148
can anyone help me to do this core component"
when I select the checkbox, a new text field show is displayed. If the checkbox is unchecked, the text field should be hidden"
Hi @16227148
can anyone help me to do this core component"
Create a custom listener file and add below code and update field names.
jQuery(document).on("dialog-ready", function() {
$(document).on("change", "[name='./checkbox-name']", function(e) {
if($(this).prop("checked")) {
// Logic Checked
$("input[name='./inputbox-name']").closest(".coral-Form-fieldwrapper").show();
} else {
// Logic un checked
$("input[name='./inputbox-name']").closest(".coral-Form-fieldwrapper").hide();
}
});
});
Check out below post for more details.
https://adapttoaem.blogspot.com/2021/02/aem-hideshow-touch-ui-dialog-fields.html
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.