Removing "None" option from non-mandatory radio buttons without code

Oreo C. July 7, 2014

Hey guys,

I'm looking for a way to remove the "none" option from optional radio buttons without going into the .vm files or otherwise modifying code. Is there a method to do this?

Thanks in advance,

2 answers

4 votes
TQ July 7, 2014

This works for me. I put it in the description of the summary field in the field configuration.

<script type="text/javascript">
var radio= document.getElementById('cf-customfield_xxxxx');
radio.style.display='none';
elem= document.getElementById('cf-customfield_xxxxx');
do {
elem = elem.nextSibling;
} while(elem.nodeType != 1); // 1 == Node.ELEMENT_NODE
if(elem) elem.style.display = 'none';
</script>

0 votes
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 7, 2014

You can do it using some javascript coding. Script can be injected using a plugin or via the announcement banner, field descriptions etc. Can't think of anything else that doesn't involve modifying the files.

Suggest an answer

Log in or Sign up to answer