Radio buttons are elements used in forms. They let a user select exactly one one of a limited number of choices.

learn more… | top users | synonyms (1)

128
votes
10answers
103k views

How can I get which radio is selected via jQuery?

I have two radio buttons and want to post the value of the selected one, how can I get the value with jQuery? I can get all of them like this: $("form :radio") But how do I know which one is ...
89
votes
6answers
24k views

WPF: How to bind RadioButtons to an enum?

I've got an enum like this: public enum MyLovelyEnum { FirstSelection, TheOtherSelection, YetAnotherOne }; I got a property in my DataContext: public MyLovelyEnum VeryLovelyEnum { get; set; ...
36
votes
8answers
37k views

JQuery How to Uncheck A radio button

I have group of radio buttons. I want to uncheck the check buttons after an ajax form submitted. I have the following function: function clearForm(){ $('#frm input[type="text"]').each(function(){ ...
24
votes
4answers
12k views

ASP.NET MVC Yes/No Radio Buttons with Strongly Bound Model MVC

Does anyone know how to bind a Yes/No radio button to a boolean property of a Strongly Typed Model in ASP.NET MVC. Model public class MyClass { public bool Blah { get; set; } } View <%@ ...
24
votes
4answers
21k views

Radio buttons on Rails

Similar to this question: http://stackoverflow.com/questions/621340/checkboxes-on-rails What's the correct way of making radio buttons that are related to a certain question in Ruby on Rails? At the ...
19
votes
10answers
55k views

Radio/checkbox alignment in HTML/CSS

What is the cleanest way to align properly radio buttons / checkboxes with text? The only reliable solution which I have been using so far is table based: <table> <tr> ...
19
votes
4answers
100k views

How do I style (css) radio buttons and labels?

Given the code bellow, how do I style the radio buttons to be next to the labels and style the label of the selected radio button differently than the other labels? <div class="input radio"> ...
16
votes
2answers
10k views

Is it possible to change the radio button icon in an android radio button group

I am wanting to allow the user of my android application the ability to set some parameters. The radio button is ideal for this situation. However, I don't like the radio buttons are rendered. Is ...
16
votes
11answers
7k views

Why can't radio buttons be “readonly”?

I would like to show a radio button, have its value submitted, but depending on the circumstances, have it not editable. Disabled doesn't work, because it doesn't submit th value (or does it?), and it ...
16
votes
10answers
16k views

ASP.NET RadioButton messing with the name (groupname)

I got a templated control (a repeater) listing some text and other markup. Each item has a radiobutton associated with it, making it possible for the user to select ONE of the items created by the ...
15
votes
4answers
8k views

jQuery UI radio button - how to correctly switch checked state

If I have a set of radio buttons, all styled with jQuery UI's .button(). I want to change their checked state, but when I do so programatically on the container's change event with $("#myradio ...
13
votes
4answers
6k views

Which Radio button in the group is checked?

Using WinForms; Is there a better way to find the checked RadioButton for a group? It seems to me that the code below should not be necessary. When you check a different RadioButton then it knows ...
11
votes
3answers
4k views

ASP.NET MVC2 Radio Button generates duplicate HTML id-s

It seems that the default ASP.NET MVC2 Html helper generates duplicate HTML IDs when using code like this (EditorTemplates/UserType.ascx): <%@ Control Language="C#" ...
10
votes
9answers
30k views

Reading the selected value from asp:RadioButtonList using jQuery

I've got code similar to the following... <p><label>Do you have buffet facilities?</label> <asp:RadioButtonList ID="blnBuffetMealFacilities:chk" runat="server"> ...
9
votes
5answers
764 views

How to use RadioGroup in ListView custom adapter?

I want to show a single select option in my list. I am using RadioButton in my listView row. I know that RadioGroup is used for single selection. But Problem is that I have added the Radio button in ...
8
votes
2answers
2k views

Radiobuttons instead of dropdownlist in mvc 3 application?

I have a View where the model has a collection of items. Then I have an EditorFor template that takes care of creating a dropdownlist for the user to select one of a limited number of values for each ...
8
votes
3answers
8k views

Windows Form Radio Button (How do i Group) C#

I'm new to the windows form scene and I was just wondering how I could group the radio buttons (alot like ASP.NET's radiobuttonlist!) So I can switch between each case chosen from the options. Thats ...
7
votes
1answer
93 views

WinForm binding radio button

I use VS2010 and then drag and drop Member datagridview to design view. After that I drag and drop name member textfield to design view and then try to edit and save. It's work properly. And then I ...
7
votes
5answers
5k views

MVVM: Binding radio buttons to a view model?

EDIT: Problem was fixed in .NET 4.0. I have been trying to bind a group of radio buttons to a view model using the IsChecked button. After reviewing other posts, it appears that the IsChecked ...
7
votes
3answers
10k views

JQuery - find a radio button by value

How would I use JQuery to find a radio button by its value?
7
votes
4answers
16k views

Simple WPF RadioButton Binding?

What is the simplest way to bind a group of 3 radiobuttons to a property of type int for values 1, 2, or 3?
7
votes
3answers
7k views

Display Zend_Form_Element_Radio on one line

The radio buttons in Zend Framework are displayed in a column (one option per line). How can I remove the br tag from the markup so that all radio options stay in one line? My decorators are: ...
7
votes
3answers
4k views

How to avoid Winforms radio button container auto grouping

The background In .Net windows forms (2.0) radio buttons are automatically grouped by their container control, whether it is a Form, Panel or GroupBox. That means that when you select one radio ...
6
votes
1answer
4k views

Android RadioButton not able to set using setChecked(false) method

If I set a radio button to be selected on the first time, it works fine. But if I unselect it by calling ((RadioButton) findViewById(R.id.ID)).setChecked(false); then, later even if I try to ...
6
votes
2answers
495 views

Java swing progress bar from EDT problem

This is for the swing experts out there. I have spent considerable time on this problem, so it is going to take me a few lines to explain the problem. I have a standalone java swing application (java ...
6
votes
4answers
639 views

Good HTML and CSS to use with <input type=“radio”>?

What's the best way to use <input type="radio"> in HTML? I'm looking for HTML that's semantically good, whose formatting is configurable via CSS. I want to be able to style/render it to look ...
6
votes
3answers
6k views

How to pass an enum to Html.RadioButtonFor to get a list of radio buttons in MVC 2 RC 2, C#

I'm trying to render a radio button list in MVC 2 RC 2 (C#) using the following line: <%= Html.RadioButtonFor(model => Enum.GetNames(typeof(DataCarry.ProtocolEnum)), ...
6
votes
3answers
2k views

Add margin between a radiobutton its label in Android?

Is it possible to add a little bit of space between a RadioButton and the label while still using Android's built-in components? By default the text looks a little scrunched. <RadioButton ...
6
votes
1answer
2k views

Way to do radio buttons in Qt 4.4.3 menus

On Linux would like to have a set of menu items which are mutually exclusive and have the currently selected one be designated by a radio button instead of a checkbox. Is there a way to do this in Qt ...
6
votes
5answers
27k views

jQuery radio onchange toggle class of parent element?

Please have a look on the following: $('#myRadio').change(function() { if($(this).is(':checked')) { $(this).parent().addClass('green'); } else { ...
6
votes
2answers
3k views

Best way to databind a group of radiobuttons in WinForms

I'm currently working on databinding some of my existing Windows Forms, and I've ran into an issue figuring out the proper way of databinding a group of radiobutton controls within a group box. My ...
6
votes
4answers
10k views

How do I use databinding with Windows Forms radio buttons?

I have a binary field in my database that is hard to describe in a UI using a single "Is XXXX?"-type checkbox. I'd rather use a pair of radio buttons (e.g. "Do it the Foo way" and "Do it the Bar ...
6
votes
4answers
17k views

How to find checked RadioButton inside Repeater Item?

I have a Repeater control on ASPX-page defined like this: <asp:Repeater ID="answerVariantRepeater" runat="server" onitemdatabound="answerVariantRepeater_ItemDataBound"> ...
6
votes
5answers
19k views

Can you style an html radio button to look like a checkbox?

I have an html form that a user will fill out and print. Once printed, these forms will be faxed or mailed to a government agency, and need to look close enough like the original form published by ...
5
votes
3answers
168 views

How can I make an HTML radiobutton with a big target area?

Something like this: Where the user would click on any area of the button and it would select that radio button. Any suggestions? As far as I can tell, radio buttons as self closed, and can't ...
5
votes
4answers
1k views

WPF MVVM Radio buttons on ItemsControl

I've bound enums to radio buttons before, and I generally understand how it works. I used the alternate implementation from this question: WPF: How to bind RadioButtons to an enum? Instead of ...
5
votes
1answer
449 views

Dynamically adding multiple GWT RadioButton groups

In my application I have a panel of widgets (all the same type of widget), and buttons that allow the user to add and remove widgets to the panel. Inside each of the widgets is a GWT RadioButton ...
5
votes
2answers
3k views

android RadioButton button drawable gravity

I am generating RadioButtons dynamically with RadioButton radioButton=new RadioButton(context); LayoutParams layoutParams=new LayoutParams(radioWidth,radioHeight); ...
5
votes
2answers
6k views

Android ListView with RadioButton in singleChoice mode and a custom row layout

I have a ListView, which is in singleChoice mode. All I want is to display a RadioButton to the side, that when clicked highlights to say it is selected, and when a different one is clicked that one ...
5
votes
1answer
774 views

In wicket, how can I create RadioGroups that are not defined by component hierarchy/layout?

I am using Wicket and would like to create a grid of radio buttons using HTML, as shown below (outer lists will be displayed vertically, inner lists will be displayed horizontally). The number of ...
5
votes
2answers
2k views

WPF Radiobutton (two) (binding to boolean value)

I have a property of type boolean presented with checkbox. I want to change that to two radiobuttons that bind on the same property presenting the value true/false. How can i do that ? thanx
5
votes
1answer
2k views

jQueryUI, radio button state, and click events

I have a page with several sets of radio buttons that are used to set options. When one clicks on specific ones, others are selected by default using click event handlers. The functionality works ...
5
votes
1answer
1k views

how do radio buttons work with asp.net mvc binding

i have an strongly typed object that represents all of the textbox properties of a form and it works fine when i post to the controller. i now need to add a radio button to this form. how does that ...
5
votes
3answers
5k views

Grouping radio buttons in Zend Framework

I want to present radio buttons in logical products groups: Broadband products: (*) 2 Mbit ( ) 4 Mbit Voice products: ( ) Standard ( ) Total Bundles: ( ) 4 Mbit + Standard ( ) 4 Mbit + ...
4
votes
2answers
57 views

radiobutton disable after 10 seconds

I have a problem with disabling my radiobuttons. I generate some options from my mysql db with php like this: <input type=\"radio\" name=\"answer\" id=\"answer\" ...
4
votes
3answers
313 views

Radio button not align properly at center in jquery mobile version 1.0?

I used radio button in my jquery mobile application and i'm using jquery mobile 1.0 and jquery 1.6.4. The problem is it always aligned left. So, i tried to move at center but it is not working. How to ...
4
votes
1answer
211 views

MVC3 LowerCase route value behaves differently from UpperCase?

Apologies for lots of code in here...I've tried to keep it as short as possible: I have written (stolen mostly from here) a HtmlHelper extension to write out a RadioButton (grouped) based upon an ...
4
votes
3answers
137 views

Radio buttons vs checkboxes for true/false/null options

I'm designing a generic survey engine and I've ran into some UI design related difficulties. I've decided that all survey elements that support multiple choices will invariably use combobox control. ...
4
votes
3answers
449 views

Improving use of radio buttons to enable/disable form fields

I have two radio buttons, and two corresponding form fields. Depending on which radio button is selected, one form field gets disabled and the other gets enabled. My code works, but I think it can be ...
4
votes
1answer
147 views

Radiobuttons as a group in different panels

I'm using C# to develop WindowsForms application. I have created a form with some panels. Each panel has a RadioButton. When I click a RadioButton, and then other one, both are checked. How could I ...

1 2 3 4 5 27