You need to sign in to do that
Don't have an account?

Scontrol to Update Readonly Field
I need to update a Checkbox on click of the New Task button. But the Field is a read only field at the Pagelayout.
Is there any way I can select that checkbx using Scontrol .
I tried the below code but it is not working on Readonly fields(except for Sys Admin Login)
function LoadingA()
{
var url = parent.location.href;
url += "&00NT0000000mtfv="+"1";
url += "&nooverride=1";
alert("url : "+url);
parent.location.href = url;
}