0
votes
2answers
33 views

Email questionnaire with checkboxes/radio buttons?

I know I could simply make a html form on a website and email a link to it, or send the html as an email which posts to the website and try to deal with the errors/warnings for different peoples mail ...
0
votes
1answer
124 views

iCheck plugin with Angular.js

There's an awesome plugin for checkboxes and radio buttons customization (seems to be a best one for that). https://github.com/damirfoy/iCheck How do I connect it with Angular.js? I'm not too ...
4
votes
1answer
224 views

Nesting Fieldsets under Radio or Checkbox items: Zend Framework 2

I would like to create a fieldset under each radio/checkbox item. e.g Which animals do you like: [x] Cats [Fieldset of cat related questions] [ ] Dogs [Fieldset of dog related ...
1
vote
5answers
47 views

JavaScript not comparing the parameter value passed

I have following html - <input type="Radio" name="radio2text" value="Radiobutton1" onclick="javascript:radioWithText('one')" checked="checked" />OneRadio<br/> <input type="Radio" ...
-1
votes
3answers
100 views

How to access checkboxes android after we choose radiobutton “yes”?

I want, if we choose radiobutton "yes" so we can using checkboxes. if we choose radiobutton "no", checkboxes can't be used. How? its xml: <?xml version="1.0" encoding="utf-8"?> ...
-1
votes
1answer
30 views

Radiobutton to Checkbox visibility

So what im trying to do is i have 3 radio buttons say rb1 rb2 and rb3. if rb1 is checked it has to display a list of checkboxes and vice versa without the use of a button.
0
votes
4answers
166 views

how to pass values in method calling in c#

I came across this situation: "If I choose a radio button and a specific checkbox is checked then the text of the radio button should be copied into a textbox". public void ...
-4
votes
1answer
88 views

Change radio buttons to check boxes [closed]

I have the below form with radio buttons and i want to replace them (the 2 options inc no thanks) with simple check boxes - leaving 3 check boxes. I can't manage to change the JS to get it working... ...
0
votes
1answer
49 views

Working out MSQ Response Collection

Long story short, I'm working on an exam-taking application as part of my internship. I'm currently on the candidate console module, which is responsible for displaying questions per section and ...
0
votes
1answer
89 views

Multiple Radio Buttons with its related Checkboxes

I'm working on a project (using the CodeIgniter framework) which contains a grid with a lot of checkboxes. On selecting a checkbox, a pop up (twitter bootstrap - modal) appears which contains ...
-2
votes
1answer
194 views

Form redirect based on radio buttons and tick boxes?

How do i create a form that will redirect the user to a different URL based on what they select? The form will be very similar to https://www.dropbox.com/upgrade where you have 3 main radio buttons, ...
1
vote
2answers
355 views

How to find the text in label-for of jQuery mobile Radio and Checkbox with knockout?

I'm using jQuery 1.9.1, jQM 1.3 & knockout 2.2.1. My html is as follows: <div data-role="page" id="coloursView"> <div data-role="content"> <fieldset ...
2
votes
2answers
872 views

How to Add multiple choice checkboxes in alert Dialog in Android?

I have created menu "Sync" in android app. when we click on "Sync" alert open a 4 checkboxes layout. what I want is to have them in function like when I click on 15 minutes then other option unclicked ...
1
vote
2answers
364 views

get checkbox and radio button value in lift

i am trying to processing a form in lift frame work. my form is having one checkbox and radiobuttons. how could i check whether the checkbox is checked or not and the selected radio button.the ...
0
votes
2answers
127 views

Listen to checkbox status using jquery

I have created a plugin where in I replace standard checkbox with iPhone like slide button. I'm able to bind the button with checkbox, i.e. when I click on YES button, checkbox is checked and when I ...
2
votes
3answers
104 views

Set input:radio by jQuery then check checked by clicking

HTML : <label><input type="radio" name="type">Stackoverflow</label> <label><input type="radio" name="type">Google</label> jQuery : ...
0
votes
2answers
645 views

Need help storing check box, radio button, and drop down menu data in mysql

I am trying to have my form data stored in a mysql database. I want everything that the user types or clicks to be stored there. I am able to have my text fields stored in mysql successfully. I am ...
0
votes
1answer
1k views

php and mysql - Send checkbox, radio button, and drop down menu results from user to mysql database and store it there

I am trying to have my form data stored in a mysql database. I want everything that the user types or clicks to be stored there. I am able to have my text fields stored in mysql successfully. I am ...
0
votes
2answers
313 views

Using a Select Statement Based on Check Box Being Checked

Firstly I would like to say this was a homework assignment I was working on, but couldn't get it to work this way. So I had to complete the assignment using If statements. The objective was to build ...
0
votes
2answers
455 views

How to pre-select a form radio item with Symfony 2?

I'm working on a language choice form: $currentLocale = "en_US"; // This is indeed sent to the formType $langs = array( 'fr_FR' => 'fr', 'en_US' => 'en' ); ...
0
votes
2answers
302 views

Android - NullPointerException at setOnCheckedChangeListener

I'm trying to customize an AlertDialog by adding RadioButton and CheckBox to ask for information from users. However, the app crashes when loading the dialog and I get NullPointerException when adding ...
0
votes
2answers
105 views

Toggle multiple password inputs with single checkbox

Ok What Im trying to do is toggle 3 password input boxes with one checkbox... on clicking the checkbox I would like all 3 passwords to be revealed within there input boxes. Is there anyway to adapt ...
0
votes
2answers
370 views

how to keep radio-button or checkbox and its label together when content wraps in flow layout

How to keep the radio button ( ) or checkbox [ ] and its label together when text wraps as the browser window is made narrower, so that we don't end up with this: [ ] pepperoni [ ] ...
0
votes
1answer
1k views

CSS Only Custom Checkbox in IE8

I found Custom CHECKBOX and RADIO from the link but could not find this working in IE8. Is there any way we can use below properties working for IE8? :after :before .big-radio:checked ...
0
votes
0answers
177 views

Check Box control is not visible. How to make it visible

I can't see checkboxes and radiobuttons in my web page. I do not understand where I make mistake. In my first template there is no problem. However after changing template there are problems with ...
0
votes
1answer
86 views

detect checkbox answer from objective c

hy I have an html containing radio buttons combo box, check box and input box. I run this html on uiwebview. I need a way to be able to know which answer the user has chosen. Any one knows how I can ...
0
votes
1answer
268 views

CSS Style Checkbox

Actually I'm styling the radio button with this trick: HTML: <div class="radioButt" > <h1>Radio:</h1> <p>Val1 : <span></span><input type="radio" id="1" ...
3
votes
2answers
5k views

Bootstrap checkbox and radio button label issue in Google Chrome

I'm having an issue with some Bootstrap inline checkbox and radio button labels, but only in some instances of Chrome. The website I'm working on is www.bostonsparkling.com. Here is a screencap of ...
0
votes
3answers
202 views

Simulate radio buttons using checkboxes and only trigger change event once?

I would like to simulate radio button behaviour using checkboxes, this says : When a checkbox is checked, all other checkboxes with the same name (here, selector) are unchecked But, if I try to ...
3
votes
2answers
9k views

Radio Button Styling

I want to style radio buttons with pure CSS, no classes or IDs. Just input[type=radio]. I want to use a background image for unselected and selected. However, the -vendor-appearance:none; doesn't work ...

1 2 3 4 5
15 30 50 per page