Tagged Questions
The checked tag has no wiki summary.
7
votes
1answer
184 views
How to check and disable several checkboxes with jQuery?
I have the following HTML code:
<input type="checkbox" value="1" />
<input type="checkbox" value="2" />
...
<input type="checkbox" value="30" />
and the user has checked some of ...
6
votes
4answers
364 views
When must we use checked operator in C#?
When must we use checked operator in C#? Is it only suitable for exception handling?
6
votes
3answers
10k views
Find out if radio button is checked with JQuery?
I can set a radio button to checked fine, but what I want to do is setup a sort of 'listener' that activates when a certain radio button is checked.
Take, for example the following code:
...
5
votes
2answers
248 views
C# checked block
Can someone explain to me what exactly is the checked an unchecked block ?
And when should I use each ?
4
votes
2answers
3k views
Jquery Jstree checkbox events capture
I am totally new to jquery and jstree...I am using jstree and populating the data using xml.But would like to capture event for each node whether checked or not along with theirs Ids.I tried using ...
4
votes
5answers
357 views
What is the difference between checked and unchecked?
What is the difference between
checked(a + b)
and
unchecked(a + b)
?
4
votes
7answers
2k views
how do I get all checkbox variables even if not checked from HTML to PHP?
I noticed that PHP seems to return only values of checked checkboxes. I would like to see a list of checkboxes, not just values of checked checkboxes. Is there a way to detect variables of unchecked ...
3
votes
3answers
40 views
How can I checked checkbox, if I have an array of values?
I have the folowing inptuts!
<input type="checkbox" value="1" />
<input type="checkbox" value="2" />
<input type="checkbox" value="3" />
<input type="checkbox" value="4" />
...
3
votes
6answers
413 views
Java unchecked/checked exception clarification
I've been reading about unchecked versus checked questions, none of the online resources have been truly clear about the difference and when to use both.
From what I understand, both of them get ...
3
votes
5answers
2k views
Check first radio button with JQuery
I would like to check the first radio button of each group. But there are some radio button that are disabled, so the script should ignore them and go to next non disabled.
I write something like ...
3
votes
8answers
979 views
Checking a radio button with jQuery when radio button is runat=“server”?
Using jQuery I want to be able to click an element which will also checks it's related radio button. I had this working fine until we had to add runat="server" to the radio buttons.
When I apply this ...
3
votes
3answers
910 views
jquery radio button when checked need an alert
In my application i need a radio group, in which whenever a button is checked, an alert occur so that i can post its value to ajax post in jquery.
Can you help me please how i can do it in jquery?
3
votes
1answer
403 views
What is a simple jquery way to select a radio when checkbox is checked and then deselect the radio when checkbox unchecked?
<input id="myCheckbox" type="checkbox" /> Please, please check me
<input id="myRadio" type="radio" /> Am I selected ?
I would like the following behavior:
When myCheckbox is ...
2
votes
4answers
327 views
jQuery - if the checkbox is checked, stop unchecked
I am solving following situation - I have in table in database data and where by these data I have in HTML page checked or unchecked checkboxes.
I am wonder about the procedure, how to do, if I have ...
2
votes
2answers
90 views
Which way to test if an element is checked is better? .is(':checked') or .prop('checked')
Both .is(':checked') and .prop('checked') can be used to test if a checkbox is checked.
Are there any interesting/important differences between those two ways of querying the checked state or is it ...
2
votes
3answers
704 views
In MVC, how can I make this example of a checkbox checked by default?
I am trying to make a checkbox in MVC be checked by default.
Below is my code. For all examples I have seen of this, the person uses something different than what I am trying so I have not been able ...
2
votes
1answer
95 views
Making sure unsigned int/long always execute in checked context in C#
Has anyone found it strange that the default context for uint and ulong is unchecked rather than checked considering that they are meant to represent values that can never be negative?
So if some ...
2
votes
4answers
841 views
Issue with jQuery setting checkboxes as checked in IE6 (not showing as checked?)
The Code:
var lstInstanceIds = getData.lstInstanceIds.split(',');
for(var i=0; i<lstInstanceIds.length; i++) {
var value = lstInstanceIds[i];
$('input[value=' + value + ...
2
votes
4answers
461 views
How Can I get the text of the selected radio in the radio groups
as said in the title
for example:
<input id="User_Type_0" type="radio" name="User_Type" value="1" checked="checked" />
<label for="User_Type_0">User1</label>
<input ...
2
votes
3answers
2k views
mootools 1.11 div contains checked checkbox
how can mootools 1.11 determine if a div contains any checked check boxes?
tried all kinds of variations using $ $$ $E $ES getElements and css selectors, its just not returning true if this div ...
2
votes
6answers
2k views
How can I determine if a radio button is checked already?
I'm using webrat with cucumber and I would like to test if a radio button is checked already when I am on a page.
How can I do that ? I didn't find any step in webrat which can do that.
1
vote
3answers
32 views
remember the state of .attr after page reload
There are some checkboxes in my form: by checking one, you disable another. The below code works very well. The problem is that when the user gets an error after submitting (when the page reloads) the ...
1
vote
3answers
48 views
jquery: how to make a group of checkboxes fires a single event?
I have a group of checkboxes in a div and I use a check all/uncheck all function.
HTML:
<div id="available_options" class="input">
<ul class="inputs-list">
<li>
<label>
...
1
vote
2answers
111 views
The 'Text' property of 'asp:TextBox' does not allow child objects
I'm converting classic ASP over to ASP.Net, and came up with this error for one of the pages:
Parser Error
Description: An error occurred during the parsing of a resource required to service this ...
1
vote
2answers
58 views
jquery function should hide / show box on page load depending on checked radio value
I have the following jsfiddle setup:
http://jsfiddle.net/eyTBZ/2/
Basically almost everything works, apart from when the page is loaded and if the value audi is checked then the div engine should be ...
1
vote
1answer
239 views
Using sj:select with s:checkboxlist
So I have trouble trying to use any of these two elements for different reasons. First I'll describe what happens with the s:checkboxlist.
When the value on the sj:select changes I want to populate a ...
1
vote
2answers
118 views
ListView, Checkable items don't get checked on Android 1.6
My app is currently targeted at Android 1.6. It contains a ListView with CHOICE_MODE_SINGLE. All the items implement Checkable. I am using setItemChecked(int position, boolean value) to check/uncheck ...
1
vote
5answers
90 views
going crazy. Simple alert when checkbox is checked with jquery
I cannot get a simple alert to fire when a checkbox is clicked/checked. I have been scratching my head wondering why I cant get it to work and I know it is going to be something simple... So, what am ...
1
vote
1answer
92 views
javascript serialize checkbox value
I have a form in this project that i am serializing so that i can pass it to PHP and make some database calls based on input values. everything was working fine until I added a checkbox to my form ...
1
vote
1answer
95 views
Closing Processes represented by CheckedItems in c#
I am wanting to close processes that a user selects in a ListView box in another form. the ListView box uses checkboxes for selecting which processes to close. Unfortunately, i dont know how to ...
1
vote
1answer
115 views
Extending Checked event in derived TreeView control - how to temporarily remove event handlers?
There is this Telerik's RadTreeView (Silverlight Version) control I'd like to extend (inherit from).
Let's call the new control MyTreeView.
The thing I'd like to achieve is that when an item is ...
1
vote
3answers
239 views
Issue with detecting default HTML checked attribute for checkbox
I'm a bit new to jQuery. I'm having issues with the following code working, specifically the reset button:
<script>
$(function()
{
$(document).ready(function()
{
...
1
vote
1answer
2k views
Android ListView CHOICE_MODE_MULTIPLE, how to set checked index?
I'm using the cool feature of the ListView to show a checkbox next to the item in the ListView.
I bind my list to an array of strings.
The onClick and onSelectedItem listeners get called fine, in ...
1
vote
4answers
239 views
Add checked = true via programming
I have been adding items to tool strip by programming but the issue is that I need to add checked property to it. Do not know how to do so.
Here is the code:
...
1
vote
2answers
332 views
VB.NET: Check box list: *after* ItemChecked
The check box list has an event called "ItemChecked" or something, which triggers when an item is about to change its checked status.
So, it is before the check occurs.
I couldn't find an event that ...
1
vote
1answer
330 views
Radio button unchecked after clicked in AJAX-like scenario
I have a textfield for which change events are bound to a function that validates the textfield's value and may splice a corresponding validation error message into the DOM above the textfield. If the ...
1
vote
3answers
52 views
What does the javascript (insert name of object here) 'defaultChecked' do?
What does the javascript (insert name of object here) 'defaultChecked' do?
1
vote
5answers
186 views
How to get selected input:radio
How come this works.
$('input:checked')
and this won't?
$('input').is(':checked')
Thanks.
1
vote
4answers
540 views
check whether checkbox is checked or not using jquery
I want to check whether checkbox is checked or not using jquery. I want to check it on checkbox's onclick event.
<input type="checkbox" onclick="javascript:check_action();" id="Public(Web)" ...
1
vote
3answers
759 views
Adding checked attribute via jQuery
I am using the following widget
http://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/
It has worked great so far, but I need some help in adding attributes. In using Firebug, I've ...
1
vote
1answer
100 views
script works, but the clicked radio isn't checked=checked jquery ajax POST
to see the error:
http://jsfiddle.net/sEdGz/2/
//the script works, but the clicked radio isn't checked=checked
//mysql and php works good
$('#form1').live("click change", function() { ....
...
1
vote
4answers
163 views
jQuery; combine user click and :checked
I have two blocks of code which basically check for 1) a click event on a radio button e.g.
$("input[id='frmSkill']").click(function(){
//do something
});
And 2) a block of code to check if ...
1
vote
1answer
103 views
Stacking :last and :checked jQuery selectors together
I'm trying to setup custom validation for a checkbox. I have 7 checkboxes each with the same name and I want to identify if the last one is checked. This is the code I have and I know its wrong, could ...
1
vote
4answers
917 views
online quiz using ASP dot NET
Hii,
I need to develop an online quiz website that would be having MCQs. I would want to have one question appearing per page with a Numeric Pager so that the user can go back and forth.
I tried ...
1
vote
1answer
141 views
C# - What could cause overflow checking here?
I am accustomed to C# not performing overflow checks, as the language spec states (ยง7.5.12):
For non-constant expressions (expressions that are evaluated at run-time) that are not enclosed by any ...
1
vote
4answers
323 views
1
vote
2answers
699 views
Check Checkboxes loaded from JQuery Load
I am loading a set of checkboxes into a div using Jquery and the load function. My code is
$("#cb-list").load('www.someurl.com');
where www.someurl.com returns html for a bunch of checkboxes e.g.
...
1
vote
3answers
2k views
How do you get the checked value of asp:RadioButton with jQuery?
I need to do something like this:
<asp:RadioButton ID="rbDate" runat="server" Text="Date" GroupName="grpPrimary" />
and be able to check the value of the radio button's checked value in ...
1
vote
4answers
19k views
C# Datagridview Checkbox Checked Event - multiple rows?
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 ...
0
votes
0answers
10 views
cookies for checkbox/radiobuttons in extjs
i am using checkboxes and radiobuttons to give the user the option to select between some services. I want to remember the checkbox selected and check/uncheck it everytime the user gets back. But i ...