This prevents deletion. By the way, after calling nuDisplayError, hidden action buttons are displayed in the header
ok the problem is - nuDeleteAction in nuForm.JS
Code: Select all
function nuDeleteAction(){
if (confirm(nuTranslate("Delete This Record?"))){
$('#nuDelete').prop('checked', true);
nuUpdateData('delete');
}
}
Code: Select all
last.deleteAll = $('#nuDelete').is(":checked") ? 'Yes' : 'No';