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
Heelp me for using viewmodel with radio group,when i rotate it was unchecked
FirstPage.java
'viewModel = new ViewModelProvider(requireActivity()).get(PagesVM.class);
radioGroup.setOnCheckedChangeListener((group, checkedId) -> {
checkedId = group.getCheckedRadioButtonId();
…

Nurtoza Ayxo'jayev
- 11
- 2
-1
votes
2 answers
Clicking radio button selects radio in all groups in Bootstrap-Vue
Bootstrap-vue dynamic multiple item row radio button selection not selected individual radio item
Here is my Vue data property and the list array:
data() {
return {
dataList: [],
question_option: '',
}
I am showing my radio…

Ruhul
- 71
- 2
- 10
-1
votes
3 answers
How to select all radio groups from a form with ES6?
I want to select all radio groups from a form using the name attribute:
-1
votes
1 answer
RadioButton is not showing
I tried to implement a RadioGroup item to my XML layout. The code compiled just fine, however, in the App the RadioGroup (last quarter of the XML-file) is not showing. I read that a reason could be the orientation of the Linearlayout, but in my…

AnonRocketman
- 178
- 2
- 16
-1
votes
1 answer
Selecting after clicked internal radio
In Radio Component the target behaviour is:
So when user click on the "RadioButton" diva area, radio input will be marked
'default' radio styles are currently appearing - which should extend to the height and width of the entire RadioButton…
Piotr Żak
- 2,046
- 5
- 18
- 30
In Radio Component the target behaviour is:
So when user click on the "RadioButton" diva area, radio input will be marked
'default' radio styles are currently appearing - which should extend to the height and width of the entire RadioButton…

Piotr Żak
- 2,046
- 5
- 18
- 30
-1
votes
3 answers
How to pre-select radio button based on visitors contact record
We have a signup form for existing customers and have all text input fields populating with their information (first name, last name and email address). We also have a list of radio button group with three radio buttons and need to pre-populate…

user3120861
- 177
- 2
- 17
-1
votes
2 answers
React radio buttons update state
I have a problem with implementing the radio buttons component in my React App.
I have a json file, with different options, like this:
[
"food": [
{
"id": 1,
"name": "Pizza",
"options": [
{
"id": 11,
…

Andrew
- 149
- 1
- 5
- 12
-1
votes
3 answers
Radio buttons below question not aligned to it
I have been trying to align the position the radio buttons below the start of the questions but nothing seems to be working for me.
Here is my code:

mhfour
- 255
- 2
- 8
- 19
-1
votes
1 answer
How to assign a radiogroup line to a Editbox.text
I am trying to use the lines or text next to the radiogroup's radiobuttons to be assigned to the text of a editbox or any other type of output please :) I am using Delphi 2010

Gunter
- 13
- 2
-1
votes
1 answer
How to randomize(or shuffle) order of Radio Buttons
I want to randomize my radio buttons whenever I reopen my app.
For example my layout is like below:
RBtn1
Rbtn2
Rbtn3
Rbtn4
Now I want to shuffle them whenever I open that particular activity. How can I do this?

Himmu
- 1
- 1
- 6
-1
votes
2 answers
RecyclerView And RadioButton in RadioGroup
I have RecyclerView and in the RowItem layout I have RadioGroup and in them, I Have Two RadioButton. if I select First Item and scroll to the bottom, the 8th, 16th,... so checked:|
How handle it?
tnx for the answer .. if you need any info .. I put…
user7268353
-1
votes
3 answers
How to add an action event for RadioButton inside a recyler view?
I created a RecylerView which allows a teacher to add attendance details to firebase, I created two radiobutton's inside a radiogroup, I tried adding an event listener for them but it didn't work.
Actual view of recycler view
My adapter code
public…

Chiruhas Bobbadi
- 63
- 1
- 9
-1
votes
1 answer
How to make only one radio button clickable?
I want to make a quiz app. One question has 7 radio button. Before this, I use onClick method for every radio button. The problem is user can click more than one radio button in one question (I put radio button in radio group). Now I want to use…

Ruzain Irfan
- 41
- 6
-1
votes
2 answers
How to get the string value of RadioButton.
I have Radiogroup and inside two radio button is there.But I cannot able to get the string value of both the radio button.
Here is my code:-
public void checkFieldsForEmptyValue(){
phonenumber=phone_number.getText().toString();
…

Nasir ALAM
- 9
- 5