Clear radio buttons
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2024 06:17 AM - edited 01-25-2024 06:26 AM
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2024 06:41 AM
Let's have an OnChange Client Script on the requested for variable. And you can use the clearValue(String fieldName) to remove the selected option.
Sample.
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading || newValue == '') {
g_form.clearValue('request_type');
return;
}
}
Cheers,
Tai Vu