checkbox

C#: How can I iterate through all checkboxes on a form

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? Thanks, John ...

ASP.Net MVC - Handle Multiple Checkboxes

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 Please Note: I have looked around, I have found similar questions but as of yet cannot find a solutio...

jQuery disable form element when checkbox is checked

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 Here is my HTML: <li id="form-item-15" class="form-item"> <div class='element-container'> <select id="hou...

ASP.NET checkbox changes focus?

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. Nowhere in the code am I specifying a change in focus, either in JavaScript on codebehind. What could be causing this? ...

Hiding tooltip for a asp.net checkbox

Is there a way of hiding a tooltip for a asp.net checkbox ...

C#: data binding a single, custom class to form controls (checkbox?)

I'm writing a desktop application in Visual Studio 2008 / C# I finished (mostly) writing an engine which generates a working schedule for the week for a small company; a form of a course-scheduling problem Right now I'm designing a form in which the user can determine the initial parameters, or criteria, for the engine to adhere to (as...

How to get values of <input type="checkbox" /> that are checked?

There are multiple <input type="checkbox" value="..." /> in the page. I need to get each of the <input> that is checked to do some operation. I'm using jQuery. ...

Radio menu check

Using Winform, is it possible to "radio check" a menu item? ...

Changing checkbox's parent element css if checked or unchecked

Hello, Basically I have a checkbox inside a td element and I want it to have one background color when the checkbox is checked and another background color when the checkbox is unchecked. So in other words I want it to highlight whether it's checked or not. I tried to use the same solution as in here: http://stackoverflow.com/questions...

How to handle checkbox in MVC application??

Hello All, I am having a edit category form in which one of the field is status which is a checkbox and the datatype of that field is int in the database. when I am selecting the checkbox I am getting an error which is as follows The parameters dictionary contains a null entry for parameter 'status' of non-nullable type 'System...

Check/Verify if user-provided CSS is not evil

I would like to allow my webapp users to save custom CSS through a text field to modify the look of their GUI. I guess there are some evil CSS hacks out there. What should I take care about? ...

Post the checkboxes that are unchecked

I've got a load of checkboxes that are by default checked. My users will probably uncheck a few of the checkboxes (if any) and leave the rest of them checked. Is there any way to get the checkboxes that are NOT checked in a form post, rather than the ones that are checked? ...

To get multiple checkboxes value

Hi All, I am using Struts 2, JSP and JPA in my project. I have nearly 50 checkboxes in a single page. If i want to get the value of each checkbox in Action class, then i have write 50 getters and setters. Is there any easy way to get the values of all checkboxes in Action class. Thank you, ...

Multiple Forms with Submit enabled via Checkbox

First, housekeeping: A quick review makes me think this isn't a duplicate but would be happy to be corrected. I've got an ASP.NET MVC app that have a page with multiple forms, each form has some text fields, an agreement checkbox and a submit button. I'd like to disable the submit button if the agreement checkbox isn't checked individua...

Flex datagrid tab to checkbox column

Context: I have a data grid where the following has been implemented. tabbing through each column in a single row and creating a new row when tabbing from the last column. The last column in my datagrid is now a checkbox. I set the 'editable' to false as shown below (since we don't want editable text to be shown when user clicks on/tabs...

QCheckbox/QRadio line wrap Qt4.6.0

Hi, I'm trying to have a multi-line checkbox/radio with Qt using standard QCheckbox/QRadio. I didn't find the direct solution since QRadio{wrap:true;} has no effect. The only thing possible would be to access to the QRadio->label->setLineWrap(true) but I'd like to do that from the designer not having to rewrite a widget Any id...

Check box in gridview

As I have check box in gridview if i dont select any one check box and if i click asp button then i have to show message to user to select check box awaiting ur response ...

Checkbox not working properly for IE with jquery

Hi, I am trying using several asp.net checkboxes on a page, disabling them accordingly. <asp:CheckBox ID='chkMenuItem' runat='server' CssClass='HiddenText' Text='Test' onclick='<%#String.Format("checkChild({0});", Eval("id")) %>' /> on javascript, I am using the following code function checkChild(id) { for (i = 0; i ...

Asp.Net - Debugging why CheckBox has Checked = true after a postback

I have a fairly complex page containing a checkbox: // In the .aspx <asp:CheckBox id="MyCheckBox" runat="server" text="Testing" /> // In the .aspx.cs protected System.Web.UI.WebControls.CheckBox MyCheckBox; What I'm seeing is that after a postback to the page, the checkbox somehow ends up with its Checked property set to true by the ...

How to do an action when a checkbox is checked with JQuery?

I want to do an action when a user checks a checkbox, but I can't get it to work, what am I doing wrong? So basically, a user goes to my page, ticks the box, then the alert pops up. if($("#home").is(":checked")) { alert(''); } ...