i was also looking for change the button name in confirm page. The Confirm page (only) should show ‘Edit’ or ‘Re-Edit’ in place of ‘cancel’.
Any tips on that? Thanks.
You may change the phrase “ConfirmBtn” and “CancelBtn” in server event such as Page_Load, e.g.if ($this->isConfirm()) {
Language()->setPhrase(“ConfirmBtn”, “Edit”);
…
}
Super; it worked perfectly. I have used in place of cancel button for Confirm page.
// Page Load event
function Page_Load() {
if ($this->isConfirm()) {
Language()->setPhrase(“CancelBtn”, “Edit”);
}
}