Help with AEM multi field
Hi,
i am new to AEM
my question is how to change the button text which is present inside Multi-field by default it is "Add" in AEM(6.4) and "AddField"(AEM(6.3))
Thanks
Hi,
i am new to AEM
my question is how to change the button text which is present inside Multi-field by default it is "Add" in AEM(6.4) and "AddField"(AEM(6.3))
Thanks
Hi,
You can create a custom client library and to have your client library loaded solely for your component dialog, you need to set the property extraClientLibs of your dialog to the category name of the client library you have just created. For more information on how to set extraClientLibs, you can refer to the below link:
AEM Components for the Touch-Optimized UI
Below is the sample js code to change the button text which is present inside Multi-field:
$(function() {
$(document).on("dialog-ready", function(){
$('.coral-Multifield .coral-Button--secondary').find('coral-button-label').html('give any text');
});
});
Hope this helps!
Regards,
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.