Hi There,
I am looking to change the buttons label of alert confirmation box on the basis of particular module .
For ex : As per below screenshot , i would like to change these button labels for one module.

Please suggest me any solution for that .
Hi There,
I am looking to change the buttons label of alert confirmation box on the basis of particular module .
For ex : As per below screenshot , i would like to change these button labels for one module.

Please suggest me any solution for that .
Neeraja P Please suggest me any way to achive this , I will be greatful to you
I played with it and this changes the labels to Yes and No quite easily when the call to the alert is made:
app.alert.show('message-id', {
level: 'confirmation',
messages: 'Test yes/no',
autoClose: false,
confirm: {label:"Yes"},
cancel: {label:"No"},
onCancel: function () {
alert("No!");
},
onConfirm: function () {
alert("Yes!");
}
});
Thanks a lot for your help.
Thanks a lot for your help.