The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 views

show if 1 checkbox checked, hide if SEVERAL UNCHECKED jquery

Hi I would like to figure out how to do some logic on a checkbox dilemma. I have a listing for a video with tags associated with it. It has a corresponding checkbox. When the checkbox is checked ...
0
votes
1answer
33 views

Collect all records from database and checked the exist

I'm working in Yii framework and i have one problem . I have one table with amenities and i want to find it all. $amenities = RoomTypeAmenity::model()->findAll(); This command work fine . Then i ...
2
votes
4answers
67 views

Why is SQLException a checked exception [closed]

Can anyone think of a rational reason why SQLException is a checked exception? Yes, there could be a syntax error in the query Yes, the connection might have died Yes, there might be a permission ...
0
votes
3answers
53 views

i want to display all checkboxes value which are checked

I want to display all checked checkboxes in php. <script> function RequestObject () { var ReturnValue = null; try { ...
1
vote
0answers
77 views

Checkboxes loose 'Checked' after check all on ajax post PHP

I've got a page where if certain checkboxes are checked first, an ajax post updates which checkboxes are shown lower down the page. Each section of checkboxes has a Check All, and Uncheck All button. ...
0
votes
3answers
49 views

Perform a not true checked binding on knockout js?

i have an input type checkbox in knockout js and i whant to perform the "not true" action when this checkbox is checked. Something like this: <input type="checkbox" data-bind="checked: ...
0
votes
0answers
26 views

Higlight all the cell which contains checked checkbox

I have found a JQuery code that make the closest cell of the checked checkbox as highlighted and i also have a javascript that let me select multiple checkbox by ckecking one box. And i use both code ...
0
votes
1answer
87 views

Input does not get checked in IE8

I need to find a way on how to sort it out this issue with IE8 I have a table with my columns and rows <table> <thead> <tr class="body"> <th ...
2
votes
1answer
58 views

unchecked only all child node in treeview

I'm using treeview , and I use from this code form checked and unchecked all Child Node when select parent or child node private bool updatingTreeView; private void ...
0
votes
4answers
84 views

jQuery method for hiding a div upon checking another radio button

I'm using the code, below, to show or hide a div upon the pseudoclass ":checked" added to an input (in my case checkboxes and radio buttons). Currently, it works perfectly with the checkboxes (the ...
0
votes
1answer
31 views

How do I change which radio button is selected using a function?

I have a radio group of 3 choices of which the first is selected by default. I want to make it to where the second one is selected upon clicking another item. This is what I have... function ...
1
vote
1answer
116 views

Programmtically setting checkbox checked attribute in IE 10

I have a legacy page which uses a ton of raw javascript (no JS library hiding browser differences). It dynamically creates a checkbox like this: function createCheckbox(checkboxName, isChecked, ...
0
votes
1answer
79 views

javascript / jquery to count number of checked checkboxes in current row

I have the below table row: <table class="authors-list"> <tr> <td style="font-size:10px;"><a class="deleteRow"> <img src="delete2.png" ...
1
vote
3answers
61 views

getElementByName returns Type Error?

My code: var isSomethingChecked = (document.getElementByName("koalaCheck").checked || document.getElementByName("kangarooCheck").checked); Why does this code throw an ...
1
vote
7answers
71 views

Java: Catching exception - unchecked vs.checked

I have some code code splits a string (user input) into an array and passes the elements of that array into a method as arguments. If the array does not have enough elements an ...
0
votes
1answer
341 views

Jquery set radio button checked

Is it possible to set a radio button to checked using jquery - by a class and a div. For example: $('input:radio[class=test1 id=test2]).attr('checked', true); I only seem to be able to se it by ...
-2
votes
2answers
81 views

Unchecking a radio button

The application is a step sequencer application with 16 radio groups with 8 buttons in each group. It works perfectly except once a group has a button selected I cant turn it off unless I use the ...
2
votes
2answers
227 views

How to keep checkbox to stay checked after post function

my checkbox return false value after do a post action in codeigniter javascript. Here is my code for function subjectid_change: function subjectid_change(id, subjectid){ setValue(id, subjectid); ...
0
votes
2answers
115 views

JavaScript - calculate Checkbox ONLY when checked

Im a Javascript beginner, but I have built a simple Cost Estimator for my site using Javascript math functions. function calc(form) { a = eval(form.a.value) b = eval(form.b.value) c = ...
0
votes
1answer
259 views

PHP/HTML Radio Button Checked on Default issue

Creating a radio button set based off of PHP/MySQL Having an issue with a button being checked on default: What it looks like: The code: $first = TRUE; if (mysql_num_rows($result)) { for ($j = ...
0
votes
2answers
45 views

How to get li chechbox checked status in jquery

How to get li checkbox checked status in jquery. I want like this one, but its throw me undefined. $('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').attr("checked") can anyone help ...
0
votes
3answers
104 views

WPF if statement based on radio button checked or not

I'm having difficulty with something which seems like it should be very simple. I'm coming from Windows Forms and starting up with WPF. I think I have a simple syntax issue but I can't seem to find ...
0
votes
1answer
155 views

Add text to string in CheckedListBox if checked?

I am working on a simple To Do List program, the user can type anything in a text box, press the button, and it adds the text as an item to a CheckedListBox. Now I want to add the text "Done" before ...
0
votes
1answer
57 views

How I can check box “App Hide” checked by default in android apps?

How to check box "App Hide" be checked by default in android apps? XML code main.xml: http://pastebin.com/aPhyC7VS java code: http://pastebin.com/wizn2a6h I already tried modificate main.xml ...
0
votes
1answer
58 views

I'm having problems trying to set a checked checkbox in my data base [closed]

Hello this is my first time asking for help, I'm new at php and query's but I'm having some problems trying to put a multi checkbox to my database: here's the deal I have 2 databases, sub categoria, ...
0
votes
1answer
278 views

Jquery checkbox inside div checked one at time

So i have a div thats auto generated and inside are 3 check boxes with different id's & names and by default none of them are checked!! If one happens to get checked then i need the other two ...
0
votes
0answers
36 views

writing a better/cleaner if statement

This piece of code I have written works, but I don't think its the best solution. What I am doing is check if a certain radio is checked if it is show this div if else show this div if this radio is ...
0
votes
1answer
32 views

Function to display values stopped working when I added this stopPropagation function

I am styling a few MultiSelect elements with unordered () HTML lists, but when I added the most recent function (to close the container when another element is clicked) another one of the functions ...
1
vote
1answer
279 views

jquery attr('checked','checked') works only once

I have a problem finding reason for the following jquery/checkbox behaviour. $( this.obj + ' table.sgrid-content > thead > tr > th > input.select_all' ).on( 'click' , {grid:this} , ...
0
votes
2answers
84 views

Use an array in this function to display values of chechboxes checked

This function replicates the user experience of a Select/MultiSelect dropdown element - displaying the values of checkboxes checked in a container (adds/removes them when they're checked/unchecked), ...
0
votes
1answer
374 views

JQGrid: making all checkboxes checked by default

After adding following in JQGrid :- Models {name: 'checkbox', index: 'checkbox', width:"5%", formatter: "checkbox", formatoptions: { disabled: false } }, Columns "Select" JQGrid has displayed ...
0
votes
0answers
57 views

show-hide toggle a p class when certain checkbox is checked (id of checkbox matches class of p)

I've found similar problems on here but solutions not working for me... I just want to use jquery a certain class of P to appear when I click a checkbox. I'm trying to have it so that p.health toggles ...
0
votes
0answers
187 views

checkbox validate in fancy slider

I tried to modify this code but without result. I use fancy slider to make my form but I have couple checkboxes which should be validate before submit. What I need to change in this jQuery code to ...
2
votes
5answers
393 views

JS .checked vs jquery attr('checked'), what is the difference?

I can't figure this one out. According to W3 Schools, the checked property sets or returns the checked state of a checkbox. So why does $('input').checked ? $('div').slideDown() : ...
0
votes
1answer
85 views

Check boxes checked?

Now I've done a lot of research, tried a lot of methods in PHP, including $_POST isset.. foreach etc But i need some help! Basically, just want to check if the checkboxes have been checked. And ...
0
votes
0answers
148 views

PHP keep checkbox ticked in checkbox array after submit error

I have looked through stackoverflow and can't seem to find exactly what i am looking .I am trying to figure this out and have spent a few hours on it so far. I have database results being outputted ...
1
vote
2answers
170 views

How can I check the radio button relative to a textbox?

I'm trying to check in reference to the textbox selected, but when I change to other textbox the first radio button stays checked! and I don't know how can I do to check the radio button according to ...
2
votes
1answer
70 views

Count the number of overflows in an operation

From the large amount of questions on this topic, I know how to detect an overflow: try { checked(doSomething()); } catch(OverflowException e) { //Handle overflow } However, is there a way ...
0
votes
2answers
112 views

make checkbox automatically checked within table PHP

I am new to PHP and I have problem. I have a table with check boxes. I need to add if statement inside the check box. echo "<div class='table1'> <table> <tr> ...
0
votes
1answer
101 views

Radio buttons not passing value in Firefox with jQuery

I have this review site, with a form for users to enter their reviews, example: http://www.thecrowder.com/index.php/userreviews/sites/99_Designs (click on 'submit review') I'm using a jQuery star ...
0
votes
1answer
48 views

Turning checked in option menu in android

I have a problem with onOptionItemSelected() checked. I built a menu in onOptionItemSelected() and there were 2 menu group and the first group has only 1 submenu, and the second group has 3 sub menu. ...
1
vote
4answers
608 views

jQuery radio button “checked” attribute not firing

I'm trying to add text to a div based on which radio button a user checks, but it ends up firing the "else" block no matter which attribute is checked, and displaying "female" every time. Please ...
0
votes
1answer
389 views

vb.net: How to prevent the dropdown of a checked combobox from closing after checking or unchecking an item

I would like to prevent the dropdown list from closing when the user checks or unchecks a checkbox in a checked combobox. I have copied some Microsoft code to created a checked combobox. As it didn't ...
1
vote
2answers
595 views

how to keep radio button checked after page refresh?

i have many radio buttons inside foreach loop and it's onclick it goes to it's corresponding url . i want the selected radio button stays checked after page refresh using php or javascript. sorry for ...
-1
votes
1answer
72 views

Checkboxes, javascript and php. Not loading results

I have a javascript code that reads from a set of checkboxes and loads a php in case one or more checkboxes are checked. This php will load only the items that are selected. However, now I click on ...
2
votes
1answer
187 views

How to check value of radio button in Visual C++ 6.0

I recently took over a project at work that has a GUI written in Microsoft Visual C++ 6.0, which I am not familiar with. The original developer of the GUI is no longer with us, and nobody else here is ...
-1
votes
1answer
79 views

Jquery post only checked variables. How to do it right?

I have this HTML code: <form name="allcats"> <p class='catslist'><label><input type='checkbox' name='cat1' id='cat1' value='1' /> AAAAAAA</label></p> <p ...
1
vote
4answers
481 views

Submit multiple forms only if checkbox is checked

I try to submit multiple forms to different locations depending on the status of the checkboxes. A javascript should check the checkboxes and submit the forms but I cannot get it to work. ...
0
votes
2answers
212 views

retrive multi check box value by jquery

i was searching on the web and stack but i cant found a way to solve my problem so I hope someone can help me i have a multi check box with same name "shopitem[]" and i want to check if check box are ...
0
votes
1answer
187 views

How can radio button tag in rails be checked according to current value in tables

I have a group of settings for products. For each setting, I want to add a pair of radio button "enabled and "disabled" to represent the setting status. User can click the button to change settings' ...

1 2 3 4 5 6