Questions tagged as 'radiobutton'

6
answers

How can I highlight the radio button that is selected?

I have this radio group in which it is used to specify the severity level of a certain occurrence, using the colors to classify the level. See: <html lang="en"> <head> <meta charset="UTF-8"> <meta na...
asked by 06.12.2017 / 19:30
2
answers

Input radio that looks like checkbox?

I need to do a quiz, and the alternatives are radio type inputs, but it looks like custom checkbox. What is the best way to do this? .tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left > .nav-tabs { border-bottom...
asked by 06.04.2015 / 03:34
1
answer

How to create a Radio button with image?

How can I make a Radio Button become an Image? I need to make a gallery of images inside a form so, clicking on the image would be selecting a radio button as in the image below:     
asked by 26.12.2015 / 23:28
2
answers

RadioButtons tabStop independent of Checked property

I have a set of RadioButtons, Edits and Labels inside a GroupBox, as in the image below: I would like the focus on Tab to focus on no RadioButton, but only on Edits, so I thought of changing the TabStop = False property of all...
asked by 11.12.2018 / 13:36
1
answer

Get the most selected radio input with JavaScript

I'm setting up a test, I'm just having the html structure done, I wanted to know how to do which input radio is most selected. Ex: The most selected was "A", so when sending the form, the image corresponding to most letters "A" and so on with th...
asked by 12.09.2015 / 15:20
2
answers

DIV only clickable if RADIO is selected

I would like my <button id="bottaaoPA">Comprar</button> to only be clickable if radio was checked. Code: $(function(){ var contador = 0; $('.pa').click(function(){ if(contador === 0) {...
asked by 25.01.2016 / 19:55
2
answers

How to change the color of a radio button?

I have these radio buttons in which it is used to specify the severity level of a given occurrence. And I wonder how I could change their color? Here is an example of this: <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com...
asked by 03.12.2017 / 19:40
1
answer

How do I unmark the previous radio button after selecting another?

I have five radio button , of these five one is "marked", how do I uncheck the radio button that I clicked after clicking another? Example: <fieldset> <legend>Selecione:</legend> <label>Moran...
asked by 06.03.2017 / 21:15
1
answer

Change radio button color

I have an application that has black background. In one of the screens of the application I have a RadioButton . I need to change the color of this RadioButtom so that it appears on the screen. <android.support.v7.widget.AppCompatRadi...
asked by 02.09.2016 / 15:31
1
answer

Select a RadioButton from a RadioGroup, according to a condition

I have a radiogroup and according to one condition must be selected one or the other. How do I get it to scale to the screen as described below? Code: private RadioGroup mSwitchButtonGroup; private boolean mGoesByCar; private User user; ....
asked by 06.10.2016 / 16:40