Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2024 09:52 PM
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