Skip to main content

Have a head scratcher here.

So I have a choice field (rendered as a button) connected to a list column, which has 3 options.

S, U, N/A

Depending on a drop down field, I either show or hide the button.

If it's hidden, I want it to default to N/A so I have a placeholder in the list.

If it's visible, I want it to default to U and hide the N/A option.

Is this possible? It's been driving me insane for about a week now...

to select one of choice option buttons try following

NWF$('#'+varChoice).find('input:radio[value="Option 2"]').click();‍‍

to hide one of choice option buttons try following

NWF$('#'+varChoice).find('input:radio:value="Option 2"]').parent().hide();‍‍

‌ render as button‌


You are a wonderful human being! Thank you very much! 


happy.pnghappy.pnghappy.png


Reply