Hi,
I'm displaying a popup message using Extensibility framework. It shows the pop-up with YES and NO buttons, I want the buttons to be "CONTINUE" and "CANCEL". How can I do that?
EAM.MsgBox.show({
msgs : [{
type : 'warning',
msg : EAM.Lang.getCustomFrameworkMessage('You are trying to complete out of compliance PM. Please acknowledge by clicking OK. If this is undesired, please change the Status back to open before saving.')
}],
buttons : EAM.MsgBox.YESNO,
.......
I already tried buttonText but that doesn't work. Thanks!!