Radio button not showing that it was clicked/selected | Adobe Higher Education
Skip to main content
Level 5
August 9, 2021
解決済み

Radio button not showing that it was clicked/selected

  • August 9, 2021
  • 3 の返信
  • 1842 ビュー

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.  

このトピックへの返信は締め切られました。
ベストアンサー 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 の返信

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
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.

islandgirl23作成者
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

islandgirl23作成者
Level 5
August 14, 2021

Thank you.  That worked!