Tagged Questions

A checkbox is a graphical user interface element that permits the user to make a binary selection.

learn more… | top users | synonyms

261
votes
12answers
205k views

Check checkbox checked property using jQuery

I need to check the checked property of a checkbox and perform the action based on the checked property using jQuery. For example, if the age checkbox is checked, then I need to show a textbox to ...
256
votes
11answers
176k views

How do I check a checkbox with jQuery or JavaScript?

I want to do something like this $(".myCheckBox").checked(true); or $(".myCheckBox").selected(true); Is such a thing built into jQuery? To clarify, I wish to set the value.
133
votes
18answers
79k views

How to handle checkboxes in ASP.NET MVC forms?

This seems a bit bizarre to me, but as far as I can tell, this is how you do it. I have a collection of objects, and I want users to select one or more of them. This says to me "form with ...
57
votes
21answers
45k views

Can HTML checkboxes be set to readonly?

I thought they could be, but as I'm not putting my money where my mouth was (so to speak) setting the readonly attribute doesn't actually seem to do anything. I'd rather not use Disabled, since I ...
50
votes
10answers
117k views

How to retrieve checkboxes values in jQuery

How to use jQuery to get the checked checkboxes values, and put it into a textarea immediately? Just like this code: <html> <head> </head> <body> <div id="c_b"> ...
29
votes
3answers
23k views

Jquery selector for the label of a checkbox

<input type="checkbox" name="filter" id="comedyclubs"/> <label for="comedyclubs">Comedy Clubs</label> If I have a check box with a label describing it, how can I select the label ...
24
votes
4answers
30k views

OnClick vs OnClientClick for an asp:CheckBox?

Does anyone know why a client-side javascript handler for asp:CheckBox needs to be an OnClick="" attribute rather than an OnClientClick="" attribute, as for asp:Button? For example, this works: ...
23
votes
10answers
9k views

Tri-state Check box in HTML?

There is no way to have a tri-state check button (yes, no, null) in HTML, right? Are there any simple tricks or work-arounds without having to render the whole thing by oneself?
21
votes
4answers
3k views

Does the GroupBox Header in WPF swallow mouse-clicks?

Have a look at this very simple example WPF program: <Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
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> ...
18
votes
3answers
36k views

Android: Binding data from a database to a CheckBox in a ListView?

I'm trying to bind data from my SQLiteDatabase to a ListView. I'm currently using a SimpleCursorAdapter to fill in my ListView. Unfortunately this doesn't seem to work with setting a CheckBox's ...
16
votes
5answers
8k views

How do I make a checkbox required on an ASP.NET form?

I've done some searching on this, and I've found several partial answers, however nothing that gives me that warm fuzzy "this is the right way to do this". To answer the most frequently occurring ...
15
votes
5answers
4k views

Android - Spacing between CheckBox and text

Is there an easy way to add padding between the checkbox in a CheckBox control, and the associated text? I cannot just add leading spaces, because my label is multi-line. As-is, the text is way too ...
15
votes
6answers
25k views

jquery: validate form with multiple checkboxes — at least one must be checked

I'm trying to validate a form using the validate plugin for jquery. I want to require that the user check at least one checkbox in a group in order for the form to be submitted. Here's my jquery ...
13
votes
6answers
6k views

How to handle Booleans/CheckBoxes in ASP.NET MVC 2 with DataAnnotations?

I've got a view model like this: public class SignUpViewModel { [Required(ErrorMessage = "Bitte lesen und akzeptieren Sie die AGB.")] [DisplayName("Ich habe die AGB gelesen und akzeptiere ...
13
votes
4answers
23k views

WPF — simple checkbox binding question

While it is trivial to store a checkbox's checked state in a variable using the checkbox's Click event, how would I do it via databinding? All the examples I have found have the UI updated from some ...
12
votes
8answers
2k views

What is the syntax for a checked checkbox in HTML?

Sounds like a bit of a silly question, but I am wondering what is the best way of stating that a checkbox is checked/unchecked in HTML. I have seen many different examples: <input type="checkbox" ...
12
votes
3answers
2k views

Jquery, checkboxes and isChecked

When I bind a function to a checkbox element like: $("#myCheckbox").click( function() { alert($(this).is(":checked")); }); The checkbox changes it checked attribute before the event is ...
12
votes
4answers
7k views

How to stop event bubbling on checkbox click

I have a checkbox that I want to perform some Ajax action on the click event, however the checkbox is also inside a container with it's own click behaviour that I don't want to run when the checkbox ...
12
votes
5answers
7k views

How do I create a Django form that displays a checkbox label to the right of the checkbox?

When I define a Django form class similar to this: def class MyForm(forms.Form): check = forms.BooleanField(required=True, label="Check this") It expands to HTML that looks like this: <form ...
10
votes
1answer
586 views

Using the HTML5 “required” attribute for a group of checkboxes?

When using the newer browsers that support HTML5 (FireFox 4 for example); and a form field has the attribute required='required'; and the form field is empty/blank; and the submit button is clicked; ...
10
votes
9answers
12k views

jquery click event handler is called twice for a checkbox

I have a problem with the following code in an ASPX page: <script type="text/javascript"> $(document).ready(function() { $('.test').click(function() { alert("click") }) }); ...
10
votes
3answers
19k views

MVC Html.CheckBox and form submit issue

Crazy issue with submitting of values in Html.Checkbox in ASP.NET MVC RC Some of the values are just not come to Request.Params At my form I have this line inside the cycle: ...
9
votes
2answers
64 views

jQuery checkbox: select all/none except one

I have a checkbox select all issue. I have multiple checkbox that can be triggered by a master one. If the master one is check then you can select any checkbox (which this works). Now my problem is ...
9
votes
8answers
249 views

notifyDataSetChanged for multiple checkboxes

In attached image, SelectAll checkbox is present with in an activity, and all checkboxes within adapter. If i checked SelectAll then all checkboxes are checked in adapter and if I unchecked then all ...
9
votes
3answers
5k views

How to style checkbox using CSS?

I am trying to style checkbox using the following: <input type="checkbox" style="border:2px dotted #00f;display:block;background:#ff0000;" /> But, it is still displaying the default checkbox. ...
9
votes
3answers
5k views

WPF CheckBox with “Button” appearance

I need a button-like control that can have a Checked property, so that when clicked it stays pressed. I had that functionality in WinForms, with the CheckBox control, setting the Appearance property ...
7
votes
7answers
91 views

How can I understand this checkbox behaviour?

Here is my HTML: <input class='user_roles' id="chk" type=checkbox /> <input id="btn_on" type="button" value="on" /> <input id="btn_off" type="button" value="off" /> And my jQuery: ...
7
votes
1answer
184 views

How to check and disable several checkboxes with jQuery?

I have the following HTML code: <input type="checkbox" value="1" /> <input type="checkbox" value="2" /> ... <input type="checkbox" value="30" /> and the user has checked some of ...
7
votes
2answers
11k views

Custom checkbox image android

Is there an easy way to use a custom image for a checkbox? I'm looking to duplicate the "starred" behavior of gmail. So I want to have a checkbox that, when checked, is a filled in star. And when ...
7
votes
5answers
2k views

Limit Checkbox amount

I have 20 Checkboxes. I need to disable 16 Checkboxes, if 4 checkboxes are selected. I tryed this begann with this jquery code $("input[type=checkbox][name=cate]:checked").each( function() ...
7
votes
3answers
5k views

Get a list of checked checkboxes in a div using jQuery

I want to get a list of names of checkboxes that are selected in a div with certain id. How would I do that using jQuery? E.g., for this div I want to get array ["c_n_0"; "c_n_3"] or a string ...
7
votes
4answers
7k views

jQuery: selecting checked checkbox

Suppose I have the following HTML: <form id="myform"> <input type='checkbox' name='foo[]'/> Check 1<br/> <input type='checkbox' name='foo[]' checked='true'/> Check ...
7
votes
7answers
9k views

Submit an HTML form with empty checkboxes

I have an HTML form - with PHP, I am sending the data of the form into a MySQL database. Some of the answers to the questions on the form have checkboxes. Obviously, the user does not have to tick all ...
6
votes
1answer
49 views

Possible to associate label with checkbox without using “for=id”?

I know that it is good sometimes to associate a label with a checkbox: <input id="something" type="checkbox" value="somevalue" /> <label for="something">this is label ...
6
votes
1answer
2k views

TreeView Remove CheckBox by some Nodes

i want remove CheckBoxes where the Node.Type is 5 or 6. I use this code: private void TvOne_DrawNode(object sender, DrawTreeNodeEventArgs e) { int type = (e.Node as Node).typ; ...
6
votes
4answers
687 views

Check/Uncheck all checkboxes

I've seen many check/uncheck all checkboxes scripts. But far most does not respect that if I toggled all checkboxes using the "checked all"-checkbox and then uncheck a single one in the list, the ...
6
votes
4answers
375 views

Why can't this checkbox, created dynamically with jQuery, be clicked?

jsFiddle I'm using a jQuery plugin that allows the user to draw boxes in an area. I use jQuery to put a checkbox (along with a dropdown list) in the box that appears when the user lets go of the ...
6
votes
3answers
855 views

Check mark in a checkbox

In my simple WPF application I use regular CheckBox control. It looks like I can control background and foreground. Foreground property controls the text next to the check box but not the check ...
6
votes
1answer
305 views

Best practice for multiple selection web UI?

I've been looking at various ways to allow a user to select one or more choices from a list of approximately 29-30 options. I've come up with the following four types, and wonder which is ...
6
votes
5answers
1k views

Get number of checkboxes that are checked in Javascript

I am trying to make a javascript function (although jquery is perfectly OK) that will return a number that corresponds to the number of checkboxes checked in a form. Seems simple enough but I can't ...
6
votes
5answers
2k views

IE not detecting jquery change method for checkbox

The code below works in FF, Safari, Chrome. But IE is giving me issues. When a checkbox is checked, I cannot get IE to detect it. $("#checkbox_ID").change(function(){ ...
6
votes
4answers
4k views

jquery - select all checkboxes with js array name

I want to use a JQuery "check all" function in a form like this: http://jetlogs.org/jquery/jquery_select_all.html My problem is I am generating my form from a php script, and I don't know exactly ...
6
votes
1answer
1k views

jQuery Validation plugin: checkbox groups and error message issues

I've put together a form using the jQuery Validation plugin, and all inputs are fine with working validation and error messages – except for checkboxes. I have two checkbox problems. The first is ...
6
votes
2answers
8k views

Android: How to change CheckBox size?

I would like to make CheckBox a bit smaller/bigger, how can I do this?
6
votes
4answers
5k views

ASP.Net Checkbox value at postback is wrong?

We have a checkbox that is initially disabled and checked. It is then enabled on the client side through javascript. If the user then unchecks the box and presses the button to invoke a postback, the ...
6
votes
9answers
9k views

asp.net MVC checkbox headache!

I have seen lots of questions relating to this topic. I am using asp.net MVC 1.0 Problem area If I use <%= Html.CheckBox("Status", true) %> Then why It renders like <input ...
6
votes
7answers
32k views

Checkbox and JQUERY: “is checked” always FALSE

The code is below and checkbox is always FALSE. But on page it is different. It doesn't get checked or unchecked. <script type="text/javascript"> $('.cbOzelHastaAdi').unbind('click'); ...
5
votes
1answer
178 views

Check/Uncheck all checkboxes with Javascript in a PHP array with keys

I have the following code: <a href="javascript:setCheckboxes3(1);" class="chkmenu">Check All</a> | <a href="javascript:setCheckboxes3(0);" class="chkmenu">Uncheck All</a> | ...
5
votes
2answers
305 views

JTable - Boolean Cell Type - Background

I'm using the Nimbus L&F with a JTable that has a boolean (checkbox) element as one of its columns. The issue I'm having is that the boolean column does not follow the natural row background ...

1 2 3 4 5 56