Home › Forums › Classic DFFS › Allow certain users to Edit › Reply To: Allow certain users to Edit
August 20, 2016 at 21:44
#12920
To compare with these three fields you need to set up the four rules you find attached.
When this is done, you must add this to the custom js:
function goBackToWhereYouCameFrom(){
spjs.dffs.dlgBox("You shall not pass!!!!",false,function(){
window.history.back();
});
}
If you like to use the default alert box you can change it like this:
function goBackToWhereYouCameFrom(){
alert("You shall not pass!!!!");
window.history.back();
}
Let me know how this works out.
Alexander



