Top "Radio-group" questions

radio-group is used to create a multiple-exclusion scope for a set of radio buttons.

Multiple radio button groups in one form

Is it possible to have multiple radio button groups in a single form? Usually selecting one button deselects the previous, …

html forms radio-group
How to get the selected index of a RadioGroup in Android

Is there an easy way to get the selected index of a RadioGroup in Android or do I have to …

java android xml radio-group
AngularJs: How to set radio button checked based on model

I have a model returning in the storeLocations object with a isDefault value. if isDefault returns true, I wan't to …

javascript angularjs radio-group
How to set OnClickListener on a RadioButton in Android?

I have two RadioButtons inside a RadioGroup. I want to set OnClickListener on those RadioButtons. Depending on which RadioButton is …

android radio-button radio-group
How to check if a radiobutton is checked in a radiogroup in Android?

I need to set validation that user must fill / select all details in a page. If any fields are empty …

android radio-button radio-group
How to set radio button checked as default in radiogroup?

I have created RadioGroup and RadioButton dynamically as following: RadioGroup radioGroup = new RadioGroup(context); RadioButton radioBtn1 = new RadioButton(context); RadioButton …

android radio-button radio-group
Multiple radio button groups in MVC 4 Razor

I need to have multiple radio button groups in my form like this: I know it's simply done by specifying …

asp.net-mvc-4 razor radio-button radio-group
RadioGroup: How to check programmatically

I create a RadioGroup from XML <RadioGroup android:id="@+id/option" android:layout_width="match_parent" android:orientation="horizontal" …

android radio-group
Android: RadioGroup - How to configure the event listener

From my understanding, to determine if a checkbox is "clicked" and find if it's checked or not, code such as …

android listener radio-group android-radiogroup android-radiobutton
android onCheckedChanged for radiogroup

I'm writing an Activity in android where I have two radio buttons under a RadioGroup. One of them is checked …

android radio-button radio-group