Hello,
I have a choice control in nintex form to show radio buttons.
radio1
radio2
radio3
radio4
Based on certain fields on the form, i would like to only show few radio buttons in the form. I am trying to achieve this using jquery on drop down change event.
But i see that there is space shown even after the radio buttons are hidden.
Can any one share some thoughts on how to fix this.
Thanks in advance
Usha
Hi Usha,
can you please post the jquery code you are using to hide the radio buttons?
Hello Philipp,
Thanks for your reply. Below is the code.
To hide
NWF$("span[data-nfChoiceValue='displayname']").css('display','none');
To display back
NWF$("span[data-nfChoiceValue='displayname']").css('display','inline');
Thanks and Regards
Usha
I acheived this finally by updating the "top" attribute so that the below field/panel can go up when radio buttons are hidden.
Thanks & Regards,
Usha