How to hide CRM 2016 / 365 bottom save button using Javascript (Turbo Forms)
Some time client will request you to hide the bottom right corner save button in status bar to prevent the user click. You can use below JavaScript snippet to do that.
function hideSaveFooter() {
try {
$(window.parent.document).ready(function () {
setTimeout(function () {
try {
debugger;
$("#savefooter_statuscontrol", window.parent.document).hide();
}
catch (e) { }
},
1000);
});
}
catch (ex) {
}
}
Some time client will request you to hide the bottom right corner save button in status bar to prevent the user click. You can use below JavaScript snippet to do that.
function hideSaveFooter() {
try {
$(window.parent.document).ready(function () {
setTimeout(function () {
try {
debugger;
$("#savefooter_statuscontrol", window.parent.document).hide();
}
catch (e) { }
},
1000);
});
}
catch (ex) {
}
}
Comments