Nintex for SharePoint Forum
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
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...
Solved! Go to Solution.
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();
You are a wonderful human being! Thank you very much!