radio-group is used to create a multiple-exclusion scope for a set of radio buttons. Checking one radio button that belongs to a radio group unchecks any previously checked radio button within the same group.
Questions tagged [radio-group]
1047 questions
-1
votes
1 answer
Jradiobutton in multiple groups
I am attempting to have four jradiobuttons that are all connected. There are two teams that each have the option of left or right. A team should only have one of the options selected, while at the same time the team's should not have the same option…

Ian Pierce
- 11
- 1
-1
votes
4 answers
get selected radio value
This is the HTML block with radiobuttons:
…

Lord Vermillion
- 5,264
- 20
- 69
- 109
-1
votes
3 answers
How to post the selected value in php
In the php script below, I got a checkbox ('solstices') and a pair of radiobuttons which happen to be arrays as well. I want them to be active if the checkbox is checked(it works). So if not checked it operates the last query. However I have a…

Lef_Chef
- 19
- 1
- 8
-1
votes
1 answer
RadioGroup in c++ builder
I have two forms in my project in c++ Builder 2010. I have created RadioGroup in the second and listed all my buttons there, but I have few problems:
When I load my form and check some button, the earlier selection stays checked until I hover mouse…

user3403621
- 77
- 1
- 13
-1
votes
1 answer
How to submit radio input selection using ajax?
I have created form on myform.php template with radio group input type and value is updated with onchange="javascript:document.post.submit()"'; . So every time whenever I change my selection, value gets updated with page refresh. Is there any way so…

galexy
- 343
- 3
- 16
- 37
-1
votes
3 answers
How to pass the id's of RadioButton/RadioGroup to another screen in Android?
Possible Duplicate:
How do I pass data between activities in Android?
Yes,No,Difficult are three RadioButtons and NEXT is a Button. I don't know how to pass the id's of selected radio button of each screen to last screen. In RESULT screen…

DroidLearner
- 2,115
- 5
- 31
- 50
-1
votes
1 answer
Reset values and make visiable for all elements associated to the radio button group member selected
We all know only one in a radio button group (radio with the same name) can be selected, but my app needs to show/hide content in a block (may have nested elements in the block) based on the selected radio button.
Question: How can I create an…

T.J. DAY
- 109
- 2
- 6
-2
votes
1 answer
Null Pointer Exception in RadioButton setText() "void android.widget.RadioButton.setText(java.lang.CharSequence)"
"I am getting this error please help - at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:958)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.RadioButton.setText(java.lang.CharSequence)'…

Devesh Parmar
- 5
- 1
- 3
-2
votes
2 answers
Functional radio component is not showing up as intended
I am creating a custom radio component using a functional component. I get the props to work and the css is working but I cannot see the actual 'radio button'.
please have a look at my code - what am I missing here.
type Props = {
children:…

Fulano
- 39
- 1
- 8
-2
votes
1 answer
How to use [(ngModel)] for multiple group radio in angular cli?
I have >2 group radio button. Every group has >2 radio button. How to get value radio checked.

Hoang Duong
- 328
- 4
- 12
-2
votes
1 answer
RadioGroup checkedId (or getCheckedRadioButtonId()) works incorrect
I'm working with RadioGroups and nested RadioButtons by programmatically. Creating and removing radio buttons for some behavior. But the problem was revealed, when I fire onCheckedChanged event. System doesn't reset radio buttons counter, even…

Aleksey Kabanov
- 347
- 1
- 2
- 8
-2
votes
1 answer
RadioGroup not display correct
I have use class RadioButtonCenter at
https://github.com/pizza/MaterialTabs/blob/master/sample/src/io/karim/materialtabs/sample/ui/RadioButtonCenter.java
It worked good in below API 24. But in API 24, It not display correct.
when i click tab new.…

Ha Nguyen
- 91
- 8
-2
votes
3 answers
Reset a Radio button inside a Radio group
How I reset a radio button inside a radio group like the image example below
All my radio groups and its radio buttons are created programmatically.
I tried to to set OnClickListener to get the radio button value before getting changed but, it…

Hadi Al Tinawi
- 429
- 7
- 22
-2
votes
3 answers
RadioGroup finding selected id
private static final String TAG = MainActivity.class.getSimpleName();
EditText etName;
EditText etAge;
Button bPredict;
RadioGroup rdGroup;
Boolean maleOrFemale;
@Override
protected void onCreate(Bundle savedInstanceState) {
…

alex czernenk
- 193
- 1
- 8