33
votes
6answers
9k 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 …
7
votes
4answers
2k 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.
5
votes
10answers
3k 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 …
5
votes
3answers
1k views
Does the GroupBox Header in WPF swallow mouse-clicks?
Hi guys,
Have a look at this very simple example WPF program:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
…
4
votes
4answers
300 views
What is the best way to style a list of checkboxes
What I'd like to achieve is a layout like this
some label [ ] checkbox 1
[ ] checkbox 2
[ ] checkbox 3
[ ] checkbox 4
[ ] represents a checkbox
What markup …
4
votes
6answers
1k views
Submit an HTML form with empty checkboxes
Hi
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 …
3
votes
3answers
490 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 …
3
votes
3answers
441 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 …
3
votes
2answers
247 views
JTree with checkboxes
I need to add checkboxes to a JTree. A custom TreeCellRenderer/TreeCellEditor seems like the right approach. So far I used the CheckBoxNodeRenderer approach in this webpage. It works OK except for two …
3
votes
7answers
510 views
How to programmatically create and use a list of checkboxes from ASP.NET?
I have a page with a table of stuff and I need to allow the user to select rows to process. I've figured out how to add a column of check boxes to the table but I can't seem to figure out how to test …
3
votes
5answers
1k 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 …
3
votes
4answers
848 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 …
3
votes
3answers
173 views
How to retreive information from Check Box?
My problem is a little bit complicate. (I use PHP)
I have two arrays, (simple arrays array[0] = string, array[1] = string...)
OK, now I will display the content of two arrays in a webpage.
The first …
3
votes
3answers
3k 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:
…
3
votes
3answers
1k 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 …
