Radio button not showing that it was clicked/selected | Community
Skip to main content
Level 5
August 9, 2021
Solved

Radio button not showing that it was clicked/selected

  • August 9, 2021
  • 3 replies
  • 1842 views

Hello,

I have two radio buttons in a group (No and Yes) and when I click on one of them, it does not show the black circle in the middle when clicked.  It show it briefly and then disappears.  The other button shows the black circle in the middle when it's clicked.  How can I fix that?  Not sure why it's happening.  

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Pulkit_Jain_

@islandgirl23 

This is not the case with OOTB grouped Radio button objects, it works as expected with both PDF and HTML preview. You can test the same with a sample form.

You may have to check if some js applied on an event in the form that could have caused this issue.

3 replies

Mayank_Gandhi
Adobe Employee
Adobe Employee
August 9, 2021

@islandgirl23 What kind of form is it? HTML or pdf? If HTMl then remove all the scripts, styles and try again.

Pulkit_Jain_
Adobe Employee
Pulkit_Jain_Adobe EmployeeAccepted solution
Adobe Employee
August 9, 2021

@islandgirl23 

This is not the case with OOTB grouped Radio button objects, it works as expected with both PDF and HTML preview. You can test the same with a sample form.

You may have to check if some js applied on an event in the form that could have caused this issue.

Level 5
August 10, 2021

Good day,

I found what I think is the problem in my click event of the yes button.  I have the below:

//-
xfa.host.resetData("form1.headersubform.tablesubform.DISPOSITIONLIST.RETURNED");
xfa.host.resetData("form1.headersubform.tablesubform.DISPOSITIONLIST.DESTROYED");
xfa.host.resetData("form1.headersubform.tablesubform.DISPOSITIONLIST.BEINGHELDBY");
xfa.host.resetData("form1.headersubform.tablesubform.DISPOSITIONLIST.other");
xfa.host.resetData("form1.headersubform.tablesubform.DISPOSITIONLIST.OTHERREASON");

 

I'm trying to reset the information in these areas of the my form when the button is clicked.  Am I missing brackets or something?  

 

Mayank_Gandhi
Adobe Employee
Adobe Employee
August 10, 2021

@islandgirl23  You can do multiple reset using comma.

xfa.host.resetData("xfa.form.form1.TextField1,xfa.form.form1.TextField2");

 Check for the field expression that could be the issue. You can do ctrl+shift to get absolute som-expression

Level 5
August 14, 2021

Thank you.  That worked!