hi @Matthew20 you can write onSumbit Client Script to make it ReadOnly on form submission.

if(g_form.getValue('state')=='closed'){
g_form.setReadOnly('state',true);
}
else{
g_form.setReadOnly('state',false);
}

Regards,

Siddharam

View solution in original post