checkbox

Flex : Changing the appearance of a disabled checkbox

A disabled checkbox in flex looks very "light" colored, almost invisible. Is it possible to make it look like an enabled checkbox which does not do anything on a click event? ...

ASP.NET Screen Scrape Post Simulate

I'm trying to download and parse the HTML of a web page. Recently, the source website moved from having all of their information on one page to hiding part of it behind javascript. There's a "Show All" check box that needs activated in order to view the whole page. Here's the website: Source Website Essentially I'm looking to automate ...

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 if they are checked when the form is submitted. If they were static elements, I'd be able to just check do this.theCheckBox but they are pr...

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 using jquery? Would it be easier to give the label tag an ID and select that using $(#labelId) ? ...

Limt selection in ASP checkbox list using VB

I have an ASP Checkboxlist control, how can I limit the number of selections a user can make? I am using visual Basic Also how would I get the values to a sting to write to the database for example? I have tried some examples of looping through the controls with no success ...

Use both jQuery.checkbox & jQuery.field

Hi, thank you for your time. I am trying to use 2 Jquery solutions on the one form, but I am unable to get the desired result after working on it for several hours. The first jquery solution enables a better look and feel http://www.envirotalk.com.au/jquery/jquery-checkbox.htm The second jquery solution enables a limit to be set on t...

Checkbox in Flex Datagrid Broken on Scrolling

I have a checkbox in a Flex DataGrid, and when I scroll, other rows are randomly checked/unchecked. After reading over: http://stackoverflow.com/questions/112036/creating-a-column-of-radiobuttons-in-adobe-flex it's clear that the itemRenderers are getting recycled, but the problem I have with the solution presented there is it moves i...

Serializing a checkbox array

Hi all, long time reader/first time poster here. So I've got a checkbox array that posted just fine to my table when I had an ajax post via: var createListingString="&features=" + arrayCheckBox; Now I'm jquerying EVERYTHING (and loving it), but each time I try to post my array with data: $("#create_listing_1").serialize(), I just ge...

Good Cross-browser tri-state checkbox?

Hey guys, I'm looking for a nice tri-state checkbox controller in JS ? Got anything to recommend me? The states I'm looking for are Checked Unchecked Indifferent (Was never checked/unchecked) ...

How to add new div tag when check box is checked using jquery

how to add new div tag next to check box when check box is checked and also when two check box is checked the two div tag must to be display. please help and make me to solve this module using jquery ...

how to skip one label having same class name of other in jquery

How to skip one label having same class name of other in jquery <label for="myCb1">test1</label> <label for="myCb1">test</label> <input type="checkbox" id="myCb1" value="1" /> when i try to invoke the label of myCb1 both are display so please help how to skip one label using jquery ...

ASP.net check box label name from xml

I have a check box in an asp.net webpage How to fill the labek name of the check box from an xml file ? I did the same for dropdown but i want similar to checkbox xmlData.ReadXml(Server.MapPath("./App_Data/view1_" + txt_dropDownToLoad + ".xml")) DropDownName.DataSource = xmlData DropDownName.DataValueField = "ddl_cod" DropDownName.D...

Problem while trying to retrieve data from checkbox

I am trying to execute the code below to list the select item in a checkbox to the body of the mail Dim CheckedValues As String For Each item In txt_panview0_ddinput1.Items If item.checked Then checkedValues = checkedValues & item.selectedValue End If ...

How to set CSS for disabled checkboxes?

I'd like change the CSS for disabled checkboxes in a grid (they are too hard to see, per the users). What is a simple way to do this? My preference in technologies used (in descending order): CSS JavaScript jQuery Other ...

Not retrieving the all selected values from checkbox

Below code is written in such a way to retrieve all selected check box values But its retieve only the first selected value Please help Dim CheckedValues As String For Each item as ListItem In txt_panview0_ddinput1.Items If item.Selected Then CheckedValues = CheckedValues & item.Value ...

Cognos : Persisting Checkbox state across Multiple Pages

Hi, On the Cognos Report Results Page, we need to have a checkbox for each row. The checkbox is designed using HTMLITEM tag. However, the problem we face is that the state of the checkbox (checked or unchecked) is not persisted when we go to the next page/previous page. I am very new to Cognos and I need to know if there is a way to d...

How can I implement a "Select All" checkbox in my ASP.NET MVC app?

I have a table with a column full of checkboxes. At the top I would like to have a single "Select All" checkbox that would check all the checkboxes on that page. How should I implement this? I'm using jQuery as my JavaScript framework if it matters. ...

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 things: there's additional whitespace above + below the checkbox; I'd like to keep it the same as a regular JTree. I would like to disti...

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 complaint against this question: "checkboxes can have two legitimate states - checked and unchecked", this is an "I accept the terms and condit...

Dynamic Table CheckBoxes not having a "Checked" true value

I have been working on a web app using ASP.NET with the code base as C#. I have a dynamic table that resizes based on a return from a SQL query; with a check box added in the third cell of each row. The checkbox is assigned an ID according to an index and the date. When users hit the submit button, the code is supposed to get a value ...