active questions tagged checkbox - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:53:23Z http://stackoverflow.com/feeds/tag/checkbox http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/861061/transparent-checkbox-in-custom-control-using-c 2 Transparent Checkbox in Custom Control Using C# codethis 2009-05-14T00:27:58Z 2009-11-26T04:49:43Z <p>Hello - I have created a custom control that gets highlighted when the mouse hovers over it. The custom control also has a checkbox. When the mouse goes over the checkbox, the highlighting of the custom control does not occur. I've tried using <strong>WS_EX_TRANSPARENT</strong> on the checkbox but it isn't working for me.</p> <pre><code> int cbStyle = GetWindowLong(CompletedCheckBox.Handle, GWL_EXSTYLE); SetWindowLong(CompletedCheckBox.Handle, GWL_EXSTYLE, cbStyle | WS_EX_TRANSPARENT); </code></pre> <p>How can I do this?</p> <p>Thanks</p> http://stackoverflow.com/questions/1536660/jquery-click-event-handler-is-called-twice-for-a-checkbox 0 jquery click event handler is called twice for a checkbox Martin 2009-10-08T09:27:51Z 2009-11-26T00:09:09Z <p>I have a problem with the following code in an ASPX page:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $('.test').click(function() { alert("click") }) }); &lt;/script&gt; &lt;asp:CheckBox runat="server" Text="Checkbox XYZ" CssClass="test" ID="cb1" /&gt; </code></pre> <p>In the browser (FF3.5 / IE8) I have the following problem:</p> <ul> <li>if I click the checkbox (the small square), it works as expected</li> <li>if I click the checkbox's text ("Checkbox XYZ"), then the click event is fired twice, and the alert is shown twice</li> </ul> <p>I guess this has to do with the way the checkbox is rendered to HTML, which is like this:</p> <pre><code>&lt;span class="test"&gt; &lt;input id="ctl00_c1_cb1" type="checkbox" name="ctl00$c1$cb1" checked="checked" /&gt; &lt;label for="ctl00_c1_cb1"&gt;Checkbox XYZ&lt;/label&gt; &lt;/span&gt; </code></pre> <p>How do I correctly setup the click event handler to prevent it from being called twice?</p> http://stackoverflow.com/questions/1799967/asp-net-checkbox-changes-focus 0 ASP.NET checkbox changes focus? JamesBrownIsDead 2009-11-25T21:10:18Z 2009-11-25T21:14:23Z <p>I have a checkbox control, and when it's clicked, the focus of the page changes to the top--the window scrolls to the top of the page.</p> <p>Nowhere in the code am I specifying a change in focus, either in JavaScript on codebehind.</p> <p>What could be causing this?</p> http://stackoverflow.com/questions/1799255/jquery-disable-form-element-when-checkbox-is-checked 0 jQuery disable form element when checkbox is checked Dakota R. 2009-11-25T19:06:57Z 2009-11-25T19:46:26Z <p>I have a complicated jQuery form and I want to disable several form elements if a certain checkbox is checked. I'm using jQuery 1.3.2, and all the relevant plugins. What am I doing wrong here? Thanks, Dakota</p> <p>Here is my HTML:</p> <pre><code> &lt;li id="form-item-15" class="form-item"&gt; &lt;div class='element-container'&gt; &lt;select id="house_year_built" name="house_year_built" class="form-select" &gt; ...Bunch of options... &lt;/select&gt; &lt;input type="text" title="Original Purchase Price" id="house_purchase_price" name="house_purchase_price" class="form-text money" /&gt; &lt;input type="text" title="Current Home Debt" id="house_current_debt" name="house_current_debt" class="form-text money" /&gt; &lt;/div&gt; &lt;span class="element-toggle"&gt; &lt;input type="checkbox" id="house_toggle" /&gt; &lt;span&gt;Do not own house&lt;/span&gt; &lt;/span&gt; &lt;/li&gt; </code></pre> <p>Here is my jQuery:</p> <pre><code>$('.element-toggle input').change(function () { if ($(this).is(':checked')) $(this).parents('div.element-container').children('input,select').attr('disabled', true); else $(this).parents('div.element-container').children('input,select').removeAttr('disabled'); }); </code></pre> http://stackoverflow.com/questions/1795812/asp-net-mvc-handle-multiple-checkboxes 1 ASP.Net MVC - Handle Multiple Checkboxes Pino 2009-11-25T09:50:39Z 2009-11-25T09:55:38Z <p>Ok, I have a role based permission system in place and would like admin's to be able to edit the permissions for each role. To do this I need to load lots of checkboxes, however I'm struggling with getting the return data from the View </p> <p>Please Note: I have looked around, I have found similar questions but as of yet cannot find a solution.</p> <pre><code> &lt;% Html.BeginForm(); string lastGroup = ""; foreach (var CurPermission in Model) { %&gt; &lt;%=Html.CheckBox("Permissions", CurPermission.Checked, new { ID = CurPermission.PermissionId}) + " " + CurPermission.PermissionValue%&gt; &lt;br /&gt; &lt;% } %&gt; &lt;input type="submit" value="Submit" /&gt; &lt;% Html.EndForm(); %&gt; </code></pre> <p>and the controller, </p> <pre><code>[AcceptVerbs(HttpVerbs.Post)] public ActionResult EditPermissions(String[] Permissions) { foreach (var CurPermission in Permissions) { Debug.WriteLine(CurPermission); } return View(); } </code></pre> <p>Obviously I need to know which boxes are not checked as well as the ones that are. But in the return values because of the whole ("true,false") I cant work out which value relates to which checkbox.</p> <p>Any suggestions as to a fix or prehaps an alternate method would be appriciated.</p> http://stackoverflow.com/questions/658458/mvc-html-checkbox-and-form-submit-issue 3 MVC Html.CheckBox and form submit issue Andrey Tkach 2009-03-18T14:22:46Z 2009-11-24T14:24:09Z <p>Crazy issue with submitting of values in Html.Checkbox in ASP.NET MVC RC</p> <p>Some of the values are just not come to Request.Params</p> <p>At my form I have this line inside the cycle: <br><br> <code>&lt;%=Html.CheckBox("cb" + p.Option.Id, p.Option.IsAllowed, new { value = 6 })%&gt; </code></p> <p>and it renders to next:</p> <pre><code> &lt;input checked="checked" id="cb17" name="cb17" type="checkbox" value="6" /&gt; &lt;input name="cb17" type="hidden" value="false" /&gt; &lt;input checked="checked" id="cb18" name="cb18" type="checkbox" value="6" /&gt; &lt;input name="cb18" type="hidden" value="false" /&gt; &lt;input id="cb19" name="cb19" type="checkbox" value="6" /&gt; &lt;input name="cb19" type="hidden" value="false" /&gt; &lt;input id="cb20" name="cb20" type="checkbox" value="6" /&gt; &lt;input name="cb20" type="hidden" value="false" /&gt; &lt;input checked="checked" id="cb21" name="cb21" type="checkbox" value="6" /&gt; &lt;input name="cb21" type="hidden" value="false" /&gt; </code></pre> <p>After submitting the Form I'm get something like:</p> <pre><code>Form.Params["cb17"] = {6, "false"} Form.Params["cb18"] = {6, "false"} Form.Params["cb19"] = {"false"} Form.Params["cb20"] = {"6,false"} Form.Params["cb21"] = {"false"} </code></pre> <p>In the request string Some of the params are displayed twice (normal situation) and some only ONE TIME (only value of hidden field). It seems that it doesn't rely on whether checkbox was checked or not, whether value has changed or so...</p> <p>Does anybody faced with such a situation? How can I work around?</p> http://stackoverflow.com/questions/1788490/c-how-can-i-iterate-through-all-checkboxes-on-a-form 0 C#: How can I iterate through all checkboxes on a form John 2009-11-24T07:45:34Z 2009-11-24T10:30:26Z <p>I have a form that has many dynamically generated checkboxes. At runtime, How can I iterate through each of them so I can get their value an IDs?</p> <p>Thanks, John</p> http://stackoverflow.com/questions/1074378/c-datagridview-checkbox-checked-event-multiple-rows 1 C# Datagridview Checkbox Checked Event - multiple rows? Goober 2009-07-02T13:36:04Z 2009-11-20T17:56:06Z <p>Hello! I have a datagridview with multiple columns and rows. The first column contains a checkbox. I want the user to be able to select multiple checkboxes and then perform an action. For example if they select checkboxes in rows 1 and 2, the data from other columns in rows 1 and 2 can be selected and passed into a messagebox.</p> <p>I know i need to use the checkbox_changed event to do this. However I am having trouble working out how to do this for multiple rows?</p> <p>help greatly appreciated.</p> <p>regards.</p> http://stackoverflow.com/questions/1771354/asp-net-server-side-conditional-attribute-or-unchecked-attribute 1 Asp.net server side Conditional attribute or unchecked attribute? Maslow 2009-11-20T15:45:33Z 2009-11-20T16:00:07Z <p>I have the following aspx code:</p> <pre><code> &lt;% foreach (ModelDefect modelDefect in GetCodes()) {%&gt; &lt;tr&gt; &lt;td&gt;&lt;input disabled="disabled" name="&lt;%= modelDefect.Code %&gt;" value="&lt;%= modelDefect.Code %&gt;" type="checkbox" checked="&lt;%=modelDefect.CompletedDate.HasValue? "checked":string.Empty %&gt;" /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:submitForm('&lt;%= modelDefect.DefectId %&gt;');"&gt;&lt;%= modelDefect.Code %&gt;&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;%= modelDefect.Description %&gt;&lt;/td&gt;&lt;td&gt;&lt;%= modelDefect.AddedDate %&gt;&lt;/td&gt; &lt;/tr&gt; &lt;% } %&gt; </code></pre> <p>I want the check box to be checked if there is a completed date, and unchecked if not. <a href="http://www.w3schools.com/TAGS/att%5Finput%5Fchecked.asp" rel="nofollow">W3</a> doesn't appear to say how to leave it unchecked but include the attribute. I don't see a way to conditionally include that attribute on the item. I found a page that suggests that checked="yes" or checked="no" should work but it hasn't. I'd like a browser-independent and standards based solution or... a clean way to conditionally add that tag server side on my asp that is Ajax friendly? (Response.Write doesn't work in Asp.net AJax as I understand it.)</p> http://stackoverflow.com/questions/1508714/datagrid-checkbox-cell 1 Datagrid checkbox cell Woland 2009-10-02T10:09:04Z 2009-11-19T21:28:10Z <p>I have developed a Windows Forms application and it has a datagrid with checkbox. If I press a button then I want to get all checked rows and do some operation on them. The problem is that when button is pressed it does not recognize the latest checkbox action. It is like one step behind.</p> <p>My code is:</p> <pre><code> private void copyToToolStripMenuItem_Click(object sender, EventArgs e) { dataGridView1.ClearSelection(); DialogResult result = this.folderBrowserDialog1.ShowDialog(); if (result == DialogResult.OK) { string foldername = this.folderBrowserDialog1.SelectedPath; foreach (DataGridViewRow row in dataGridView1.Rows) { if (row.Cells[0].Value != null) { if ((bool)row.Cells[0].Value == true) { try { string[] vars = row.Cells[1].Value.ToString().Split('\\'); System.IO.File.Copy(row.Cells[1].Value.ToString(), foldername + @"\" + vars[vars.Length - 1], true); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } } } } } </code></pre> <p>Data is from a SQL query - the usual stuff.</p> http://stackoverflow.com/questions/1764198/programmatically-click-on-a-checkbox 0 Programmatically click on a CheckBox Grzenio 2009-11-19T15:42:30Z 2009-11-19T15:54:24Z <p>Hi, </p> <p>Is there a way to programmatically generate a click event on a CheckBox? I am looking for an equivalent to Button.PerformClick();</p> http://stackoverflow.com/questions/1760079/submit-with-checkbox-no-javascript 0 Submit with checkbox? No javascript Bua 2009-11-19T00:19:21Z 2009-11-19T00:40:55Z <p>Is there any way to submit a form when a user clicks on a checkbox? Think of a todo list.</p> <p>When the user clicks on the checkbox, it updates the todo entry in the database saying its done.</p> <p>Can this be done without using javascript?</p> http://stackoverflow.com/questions/1535187/jquery-validate-form-with-multiple-checkboxes-at-least-one-must-be-checked 0 jquery: validate form with multiple checkboxes -- at least one must be checked jalperin 2009-10-08T01:42:37Z 2009-11-18T21:29:38Z <p>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 code:</p> <pre><code>$().ready(function() { $("#subscribeForm").validate({ rules: { list: {required: "#list0:checked"} }, messages: { list: "Please select at least one newsletter"} }); }); </code></pre> <p>and here's the html form:</p> <pre><code>&lt;form action="" method="GET" id="subscribeForm"&gt; &lt;fieldset id="cbgroup"&gt; &lt;div&gt;&lt;input name="list" id="list0" type="checkbox" value="newsletter0" &gt;zero&lt;/div&gt; &lt;div&gt;&lt;input name="list" id="list1" type="checkbox" value="newsletter1" &gt;one&lt;/div&gt; &lt;div&gt;&lt;input name="list" id="list2" type="checkbox" value="newsletter2" &gt;two&lt;/div&gt; &lt;/fieldset&gt; &lt;input name="submit" type="submit" value="submit"&gt; </code></pre> <p></p> <p>The problem is that the form submits even if nothing is checked. How can I resolve this?</p> http://stackoverflow.com/questions/1756474/how-to-put-checkbox-into-wpf-grid 0 How to put CheckBox into WPF Grid Vytas 2009-11-18T14:41:17Z 2009-11-18T14:41:17Z <p>Hello i put TextBox Column into WPF grid like this:</p> <pre><code> DevExpress.Wpf.Grid.GridColumn col = new GridColumn(); col.FieldName = dr["FieldName"].ToString(); col.Header = dr["Caption"].ToString(); //Gets or sets the name of the column col.Name = "c"+ dr["FieldID"].ToString(); if (notGenerateColumns != null &amp;&amp; notGenerateColumns.Contains(dr["FieldName"].ToString())) { col.ReadOnly = false; } else { col.ReadOnly = true; } Grid.Columns.Add(col); </code></pre> <p>Does anyone knows how to add a CheckBox to this WPF grid (CheckBox Components into cells of some Column) Thanks.</p> http://stackoverflow.com/questions/1750606/showing-hiding-a-div-based-on-one-or-more-checkbox-radiobox-selections 0 Showing/Hiding a DIV based on one or more checkbox/radiobox selections? SevenT2 2009-11-17T17:51:23Z 2009-11-17T18:24:06Z <p>I asked a similar question previously, but it was so vague that I couldn't possibly have gotten the answer I wanted.</p> <p>Basically, I want a user to be able to select from multiple options and have various bits of information appear based on the selections.</p> <p>For example: </p> <pre><code>"How old is your computer?" Options: [x]One Year [ ] Two Years [ ] Three Years Output: "Your computer is One year old" </code></pre> <p>I want that functionality to expand over multiple separate checkboxes and radioboxes...?</p> <p>Is this possible?</p> <p>EDIT:</p> <p>Its for a hardware upgrade recommendation system that takes in to account your current system.</p> <p>"Based on your current system, you need to replace your graphics card and purchase additional RAM" </p> <p>Which could use factors like "How old is your computer?", "How much RAM does your computer have", "What directX version is your graphics card" or something like that.</p> http://stackoverflow.com/questions/1750617/checkbox-div-toggle 0 checkbox / div toggle Nimbuz 2009-11-17T17:53:04Z 2009-11-17T17:55:40Z <pre><code>$(".trigger").click(function () { $(this).next(".toggle").slideToggle("fast"); $(this).toggleClass("active"); return false }); </code></pre> <p>HTML:</p> <pre><code>&lt;input type="checkbox" class="trigger"&gt; &lt;div class="toggle"&gt;content&lt;/div&gt; </code></pre> <p>It isn't working, whats wrong with the code?</p> <p>Thanks</p> http://stackoverflow.com/questions/1742604/html-checkbox-change-value-in-mysql 0 Html checkbox change value in MySql Marvin 2009-11-16T14:46:30Z 2009-11-17T09:14:06Z <p>Hello,</p> <p>I have a check box and I need that when it is "checked" to alter a MySql Table value to "yes" and if its checked when you uncheck to "no".</p> <p>I wanted to accomplish this with ajax, can anyone point me in the right direction please?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1742807/sticky-checkbox 0 sticky checkbox francesco 2009-11-16T15:14:59Z 2009-11-17T08:52:22Z <p>Hello all. Ii am trying to make a checkbox (to send via email) sticky.</p> <p>To make sure it doesn't make a problem when sent empty I used the following:</p> <pre><code>&lt;input type="checkbox" name="something" value="1"&gt; &lt;input type="hidden" name="something" value="0"&gt; </code></pre> <p>I have used things such as:</p> <pre><code>&lt;input type="checkbox" name="something" value="1" &lt;?=(($_POST['something']=='1')?'checked="checked"':'')?&gt;&gt; </code></pre> <p>But it does not work. Can someone please help me? Many thanks Francesco</p> http://stackoverflow.com/questions/1739307/checkbox-with-autopostback-and-oncheckedchanged-event-fires-event-when-page-loads 0 Checkbox with AutoPostBack and OnCheckedChanged Event Fires Event when Page Loads Ashish 2009-11-15T23:39:06Z 2009-11-16T01:48:18Z <p>I have a checkbox in a repeater and it is bound to a data source where it sets the checkbox to checked or unchecked. The checkbox is set to AutoPostBack and has an OnCheckedChange event.</p> <p>The problem is that the event keeps getting fired when the page loads. I need it to only fire if the user makes a change. How do I do this?</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { if (Session["adminID"] != null) { if (!IsPostBack) { List&lt;Search_admin&gt; searchList = SearchDB.GetAllSearches(); searchRepeater.DataSource = searchList.ToArray(); searchRepeater.ItemDataBound += new RepeaterItemEventHandler(activeCkBx_click); searchRepeater.DataBind(); } } else FormsAuthentication.RedirectToLoginPage(); } protected void activeCkBx_click(object sender, EventArgs e) { } </code></pre> <p>thanks</p> http://stackoverflow.com/questions/1726096/tri-state-check-box-in-html 0 Tri-state Check box in HTML? Pekka Gaiser 2009-11-12T23:20:39Z 2009-11-13T04:50:22Z <p>There is no way to have a tri-state check button (yes, no, null) in HTML, right?</p> <p>Are there any simple tricks or work-arounds without having to render the whole thing by oneself?</p> http://stackoverflow.com/questions/1723649/jquery-checkbox-issue-do-not-check-if-its-disabled 0 jquery checkbox issue - do not check if it's disabled FALCONSEYE 2009-11-12T16:47:57Z 2009-11-12T21:36:13Z <p>I have 5 checkboxes in each row. The first one is 'ALL'. I am trying to see if any of the others are disabled. So, if somebody clicks on 'ALL' checkbox, I need to make sure the disabled ones are not checked. This is what I have:</p> <pre><code>("input[name^=all_]").each(function() { var input = $(this); var name = input.attr('name'); var num = /\d+$/.exec(name)[0]; $(this).click(function() { if ($('"#G"+num').attr('disabled',false)) { $("#G"+num).attr('checked', $("#all_"+num).is(':checked')); } if ($('"#E"+num').attr('disabled',false)) { $("#E"+num).attr('checked', $("#all_"+num).is(':checked')); } if ($('"#W"+num').attr('disabled',false)) { $("#W"+num).attr('checked', $("#all_"+num).is(':checked')); } if ($('"#S"+num').attr('disabled',false)) { $("#S"+num).attr('checked', $("#all_"+num).is(':checked')); } }); </code></pre> <p>});</p> <p>The thing is, the disabled ones still gets checked once I click on 'ALL'. what am i doing wrong? thanks in advance.</p> http://stackoverflow.com/questions/1708545/jquery-checkbox-required 0 jquery CheckBox required haddar 2009-11-10T14:54:18Z 2009-11-11T09:40:40Z <p>hello,</p> <p>how can I make a checkbox required ?</p> <p>my code</p> <p>aspx:</p> <pre><code>&lt;asp:CheckBox ID="cbIsAgree" CssClass="{CheckedBox:true, messages:{CheckedBox:'check me!.'}}" runat="server" Text="check me!" /&gt; </code></pre> <p>javascript :</p> <pre><code>$.validator.addMethod("CheckedBox", function CheckedBox(value, element) { return $(element).is(':checked'); } , 'check me!'); </code></pre> <p>that code isnt working ... why ? </p> http://stackoverflow.com/questions/1713538/how-to-get-selected-rows-using-checkbox-in-asp-net-mvc 0 How to get selected rows using checkbox in asp.net MVC sudhir 2009-11-11T07:04:12Z 2009-11-11T07:49:22Z <p>Hi i've a problem related to html.checkbox in my MVC application.</p> <p>My scenario is:</p> <p>I've a list(index view) page where i bind data from the database with a checkbox to select/deselect the item. when i click save button i want to get selected rows to save those items back to db.</p> <p>i used </p> <pre><code>1. &lt;input type="checkbox" id="chk2" value="&lt;%= item.recid %&gt;" &gt; // I'm not getting value of chk2 in serverside 2. &lt;%= html.CheckBox("chk1")%&gt; // i'm getting chk1 in serverside with value like 'true,false,true,false...' </code></pre> <p>in my model view iteration.</p> <p>So how to do that in MVC application?</p> http://stackoverflow.com/questions/453076/formatexception-html-checkbox-updatemodel-and-the-hidden-input 1 FormatException: Html.CheckBox(), UpdateModel() and the hidden input cottsak 2009-01-17T09:48:24Z 2009-11-10T21:31:12Z <p>i have my checkbox for a bool field like so in my view:</p> <pre>=Html.CheckBox("Active", ViewData["Active"] != null ? ViewData["Active"] : (ViewData.Model.Active != null ? ViewData.Model.Active : false)</pre> <p>you can forget the fluff if you like:</p> <pre>=Html.CheckBox("Active", ViewData.Model.Active)</pre> <p>..causes the same problem.</p> <p>when i try to update my model with:</p> <pre>UpdateModel(vacancy, Request.Form.AllKeys);</pre> <p>..i get the object array return with two bool fields. ok, so i understand the need for the hidden field. but im using MVC Beta and i believe the post data is not being processed by UpdateModel correctly. i get this error: System.FormatException "String was not recognized as a valid Boolean." ..when the form posts back sometimes. What i mean by that is that the form works fine, saving true and false states, except when another field on the form is empty. then it complains about the "true,false" value. and thats fine. i understand that a string "true,false" is not a valid bool but y does it complain sometimes and other times work? pls help</p> <p><b>EDIT:</b> please, if some1 can even suggest another approach to the UpdateModel() method, i'll look at that. i suspect tho that this is something simple i'm missing.</p> <p><b>EDIT 2:</b> this seems to be a known bug in MVC Beta (<a href="http://www.codeplex.com/aspnet/WorkItem/View.aspx?WorkItemId=2671&amp;FocusElement=CommentTextBox" rel="nofollow">http://www.codeplex.com/aspnet/WorkItem/View.aspx?WorkItemId=2671&amp;FocusElement=CommentTextBox</a>). can anyone suggest a workaround?</p> http://stackoverflow.com/questions/1711100/javascript-appendchild-name-property 0 Javascript appendChild name property C Bauer 2009-11-10T20:52:06Z 2009-11-10T21:16:22Z <p>So I'm trying to add attributes to a radio button input, specifically the name attribute in Javascript. I'm appending children to a main object and when I use Object.setAttribute("name", value); and subsequently check the innerHTML of the appended input, it does not even contain a name property at all!</p> <p>I'm guessing I'm missing something simple or there is a way around it but I've been wrestling with this problem for quite a while with no success. I tried accessing the property directly using Object.name = value and Object.nodeName = value (that one was a random try).</p> <p>Is there some sort of problem in which IE6's javascript rendering engine does not recognize setAttribute("name", value)? Is there a way around it?</p> http://stackoverflow.com/questions/1703902/how-do-you-know-using-jquery-when-either-all-or-no-checkboxes-have-been-selected 0 How do you know using JQuery when either all or no checkboxes have been selected Coppermill 2009-11-09T21:20:23Z 2009-11-09T23:00:03Z <p>How do I know, using jQuery, if all or none of the following checkboxes have been selected?</p> <pre><code>Soccer: &lt;input type="checkbox" name="sports" value="soccer" style="chkbox" /&gt;&lt;br /&gt; Football: &lt;input type="checkbox" name="sports" value="football" style="chkbox" /&gt;&lt;br /&gt; Baseball: &lt;input type="checkbox" name="sports" value="baseball" style="chkbox" /&gt;&lt;br /&gt; Basketball: &lt;input type="checkbox" name="sports" value="basketball" style="chkbox" /&gt; </code></pre> http://stackoverflow.com/questions/1698874/php-checkboxes-always-showing-checked 0 php checkboxes always showing checked SoulieBaby 2009-11-09T02:56:44Z 2009-11-09T20:35:58Z <p>Hi all, I've got a single checkbox which i'd like the unchecked value to be 0 and the checked value to be 1, but when the post goes through, it always shows as 1 whether the box is checked or not..</p> <p>Here's the checkbox:</p> <pre><code>&lt;input name="stock[]" type="checkbox" id="stock[]"&gt; value="1" /&gt; </code></pre> <p>here's what it spits out regardless of whether it's checked or not.. (there are multiple "stock" checkboxes..</p> <pre><code>[stock] =&gt; Array ( [0] =&gt; 1 [1] =&gt; 1 [2] =&gt; 1 [3] =&gt; 1 [4] =&gt; 1 [5] =&gt; 1 ) </code></pre> <p>I can't seem to get it working.. :S Any ideas? :)</p> http://stackoverflow.com/questions/1697611/how-to-get-unselected-checkbox 1 How to get unselected checkbox? Gero 2009-11-08T19:25:40Z 2009-11-08T19:50:30Z <p>Hello!</p> <p>I have three checkboxes like ch[0], ch[1] and ch[3] (sometimes i have more, or less, it's dinamic) and in PHP i want to get the unselected items also, like this: 0=yes,1=no,3=yes and so on.</p> <p>Can I solve this somehow?</p> http://stackoverflow.com/questions/1088988/jquery-validation-plugin-checkbox-errorplacement 0 jQuery Validation Plugin Checkbox errorPlacement Ian McCullough 2009-07-06T20:10:54Z 2009-11-08T11:00:04Z <p>I have a group of checkboxes that all have the same name. They all have different values. They are just part of a form. They do not make up the entire form. I want the checkboxes to display their error AFTER the last checkbox of that group.</p> <p>is it possible to do something like this in jQuery?</p> <pre><code>$("#myform").validate({ errorPlacement: function(error, element) { var checkboxes = $("#checkboxes"); if(checkboxes.contains(element)) label.insertAfter(checkboxes[checkboxes.length-1]); }, debug:true }) </code></pre> <p>How would I go about doing this?</p> <p>Thanks, <br /> Ian McCullough</p> http://stackoverflow.com/questions/1695502/there-is-only-one-submit-for-one-form-how-to-place-more-than-one-operations-on 0 There is only one "submit" for one form,how to place more than one operations on a set of checkboxes? Steven 2009-11-08T05:44:44Z 2009-11-08T06:14:48Z <p>There is one form, inside the form there are many checkboxes. Two operations can placed upon these ticked checkboxes. Since there is only one "submit" button for a form, how to walk around this?</p> <p>I know I can set two buttons, one button for each operation, and an extra "submit" button, which looks like the pseudocode below:</p> <pre><code>&lt;form&gt; &lt;checkbox1&gt; &lt;checkbox2&gt; &lt;checkbox3&gt; ... &lt;checkboxn&gt; &lt;button value="operation1"&gt; &lt;button value="operation2"&gt; &lt;submit value="submit"&gt;&lt;/form&gt; </code></pre> <p>but a user needs to click twice, is there a better solution? Maybe I can use JQuery to achieve it, how to write the code?</p>