Tagged Questions
1
vote
0answers
73 views
Checkbox value added by default
I'm attempting to make a code that will display the divs when checked and also add the values of the checkboxes together. I've managed to come up with this but now I want to make some of the ...
1
vote
0answers
403 views
Select All Checkbox / Twitter Bootstrap Rails
I'd like to know how to create a "Select All" checkbox in my table.
The only thing is that I'm not using input tag for the checkboxes, I'm using f.check_box.
Here's my tbody
<td>
<label ...
1
vote
0answers
145 views
Distinguish between missing and an unchecked checkbox
I was under the impression that the server code (or at least PHP) that parses the POST of an HTML form cannot distinguish between a POST from a form with a checkbox whose value is not "checked" versus ...
0
votes
0answers
19 views
Jquery issue regaurding getting values from textbox labels
I have the following code for android which needs to send the data of the selected tickboxes when the button is pressed. Currently the code does send all the relevant data if you press on the label to ...
0
votes
0answers
113 views
CSS Checkbox style to toggle a value
I am currently writing a program which toggles a value based on the status of a checkbox. With a normal checkbox everything works fine.
HTML:
<td><script> ...
0
votes
0answers
43 views
Issue with getting values of checkboxes checked in HTML form in PHP
I have a HTML form that I build using php like this:
<div class="modal-body">
<?php
$getW = "SELECT personID, firstName, lastName FROM person";
$wResult = ...
0
votes
0answers
51 views
Implode checkbox values with this operator in php
In this contact form Website Link there are four checkboxes. How needs to be integrated the implode(', ', $interessen); in the code part $message .= "<tr><td><strong>Interessiert ...
0
votes
0answers
22 views
Need Multi Select Plugin
I need a multi select drop down with the following features.
Checkboxes
Remote data (on/off TypeAhead)
CheckAll/ UnCheckAll
Searchable
Is there any plugin that has all above features?
0
votes
0answers
22 views
How to select of this line “data[new][formhidden_field1]” this “formhidden_field1”?
I have
<td>
<input type="hidden" id="data[new][motion_formshow]" name="data[new][motion_formshow]" value="true">
<input ...
0
votes
0answers
88 views
Dropdown Check List with “traditional” style?
I need a combobox of checkboxes. I found this: http://code.google.com/p/dropdown-check-list and it looks like exactly what I need. But I really don't like it's style (appearance) and it doesn't fit ...
0
votes
0answers
42 views
chrome checkbox display with php
If I load the following code in jsfiddle.net (in Chrome), it works fine. But on its own as a page in Chrome, it loads OK for a second and then overrides the "checked" status. Instead of displaying the ...
0
votes
0answers
27 views
Attributes are zeroed upon page refresh
In my HTML page I have the following definition:
<img style="cursor: pointer;" src="src.png" id="USED" name="USED" class="USED" onClick='func(this)'/>
I'm using this img as a checkbox, and ...
0
votes
0answers
48 views
Getting the “checked”-status of checkboxes
I have the following scenario - I am working on a site which contains a dynamic table -> content is coming from a SP.
Each row has a checkbox on the left (checked by default).
Something like
<% ...
0
votes
0answers
237 views
Creating a Checkbox list filter
Im working on a project and this here [http://jsfiddle.net/magicalex/FmQvc/][1] is exactly what I need to allow users to filter data in the list depending on the checkboxes they check.
Example is that ...
0
votes
0answers
51 views
html textbox in ie 7 and 8 not checking on image click
I can not seem to get this checkbox to work in ie8, i do have JS working with the form, however i do not believe that it is the JS causing the problem. I have not checked to see if this works in ie7, ...