Alexander Cuadros
05/14/2024, 11:31 PMemilysymondsc
05/15/2024, 12:23 AM//Suitelet
form.addButton({
id: 'refresh_page',
label: 'Refresh',
functionName: 'refresh'
});
//Client Script
function refresh() {
console.log('refresh');
var baseUrl = new URL(window.location.href);
var refreshUrl = baseUrl.toString();
window.onbeforeunload = null;
window.location.replace(refreshUrl);
}