A checkbox is a graphical user interface element that permits the user to make a binary selection.
0
votes
2answers
16 views
Toggle and disable/enable one checkbox when another checkbox is checked
I've enjoyed this site for the past year or so and looking forward to some help from all of you.
I'm working on a classic asp page (I inherited the page, didn't create it) that has a table that is ...
0
votes
1answer
14 views
Using VBA with Checkboxes and vLOOKUP?
I'm trying to make a small info sheet that has a drop down menu with a bunch of names. When you pick a name it automatically fills out a bunch of info on them. I also want it to have a checkbox that ...
2
votes
1answer
7k views
Android ListView with Checkboxes: How to capture checked items?
I have to do a ListView with CheckBoxes and then display the checked and unchecked items when user presses the button. The problem is I don't know how to do it, I manage to display the ListView with ...
0
votes
2answers
7k views
How to get Selected items in WPF CheckBox ListBox
Am Using the checkbox in listbox items, how to get the selected checkboxes from the list
<ListBox ItemsSource="{Binding NameList}" HorizontalAlignment="Left" Margin="16,68,0,12" Name="listBox1" ...
-2
votes
1answer
40 views
Passing values of checkboxes to Perl Script
I have a simple list of checkboxes, which are NOT in a form. On clicking a button, I want to send the values of all selected checkboxes to a perl script. I do not want to make it a form. Am working ...
0
votes
1answer
23 views
ExtJS function to toggle all checkboxes
I have a simple list of HTML checkboxes, as follows :
<input type="button" class="check" value="check all" onclick="foo()"/>
<input type="checkbox" class="chk" value="1"/> ...
0
votes
1answer
27 views
CSS CheckBox Hack for Click Event not Works when nested in a DIV
How i can add the checkbox and label css click event inside a DIV?
the below codes not works for me, if i remove "" its working perfect.
Why is happening?
HTML
<div id="wrapper">
...
6
votes
3answers
1k views
How to get size of check and gap in check box?
I have a check box that I want to accurately measure so I can position controls on a dialog correctly. I can easily measure the size of the text on the control - but I don't know the "official" way of ...
67
votes
6answers
121k 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. ...
0
votes
1answer
28 views
Django: Require Checkbox to be ticked to Submit Form
I'm creating a form in Django (using ModelForm).
There are many checkboxes, and I want to make it so that one of these must be selected in order to submit the form. I don't mean any one checkbox, but ...
11
votes
6answers
17k views
using jquery, getting all checked checkboxes with a certain class name
i know i can get all checked checkboxes on a page using this:
$('input[type=checkbox]').each(function () {
var sThisVal = (this.checked ? $(this).val() : "");
});
but i am now using this ...
0
votes
4answers
645 views
Jquery+PHP form - Multiple recipients based on checkbox selection
I'm asking this question in regards to my friend, so I do not have code samples to post here at the moment. Hopefully I'm clear enough that someone can help.
So he has a simple contact form except it ...
0
votes
5answers
84 views
check checkboxes by variable in array
Code:
<div>
<input type='checkbox' lid='1'><label>checkbox1</label>
<input type='checkbox' lid='2'><label>checkbox1</label>
<input ...
0
votes
5answers
574 views
jQuery: select checkbox when upload field is clicked
I'm working on a CMS. When a user wants to replace an existing thumbnail image, they can upload a replacement, and check a checkbox to certify that they are indeed replacing the image. The checkbox ...
1
vote
0answers
8 views
Checklist in longlistselector cropped when shown in WP8 XAML layout
Trying to get to grips with Windows Phone 8 and XAML, I started a simple test project. I have in my pivot view a longlistselector showing data entries in a flat list; when the user wants to remove ...