A checkbox is a graphical user interface element that permits the user to make a binary selection.
0
votes
5answers
17 views
Validation message is prematurely triggered
I have following code, and I want it so that if I unchecked the checkbox it will show the validation message.
My code
jQuery
if($('#TermsAndConditions').is(':checked'))
{
} else {
alert('Not ...
1
vote
1answer
27 views
PHP multiple data submission to fields in form
I want to input my data values from DATABASE of second html/miirror page to first HTml form fields/main field form , when i click add button in my html. Using multiple choice to get the data. checked ...
0
votes
3answers
19 views
Trouble adding checkboxes to HTML div using JS
As a noob at programming, I'm having some HTML/JS pHroblems. I'm trying to make a dynamic checkbox list where you can add tasks to complete. I've done my research, combing through at least 10 ...
1
vote
0answers
5 views
shiny / rscript - reactive plot using checkboxGroupInput integer list not working
I am developing some geo-analytical software with R-script using the rgdal, and RSAGA addon's. I have recently found the shiny addon, and I am pleased with how easy it is to wrap my loop controller in ...
0
votes
1answer
30 views
function running in foreach loop
thank you for taking time to look at this. I have been dealing with this annoying foreach loop. Here is what I am trying to do.
I have the first page "form.php".
On this page I have check boxes. Each ...
0
votes
0answers
52 views
php if statement multiple checkboxes
I am trying to write a code that will allow a user to go to the site, check 1 checkbox per table and then let them know if they should refer a patient or not based upon what they checked. The alert ...
0
votes
0answers
6 views
Getting data from Rally getSettingsFields - checkboxfield
I recently posted about getting a combobox into the settings of a Rally app, now I'm trying to figure out how checkboxes work in settings. I assumed they would work similarly [ish] but for some ...
1
vote
2answers
26 views
A textbox will appear when a checkbox is clicked works on jsfiddle but not on my browser
Good day! Basically, I want a textbox to appear when a checkbox is clicked and disappear when unclicked. Here is the JSFiddle http://jsfiddle.net/GBSZ8/2/ and it works just fine. However, when I saved ...
-1
votes
0answers
12 views
Select each row/column check box in dynamically generated checkboxes inside a table through javascript/jquery
I have already tried to generate dynamic rows and column. Inside each cell,again I am dynamically generating checkboxes.. Now I want to create a single checkbox in the first row and column in that ...
1
vote
1answer
14 views
Setting a checkbox to Visible = False
I'm trying to make a checkbox disappear if a field is empty using the following code:
If rstPIANO.RecordCount <= 0 Then
MsgBox "No PIANO Data exists for this date"
chkPIANO.Enabled = Not ...
1
vote
1answer
23 views
CakePHP: multiple checkbox with different html attribute
Here is the situation:
i have table stages having following structure
| id | name | editable|
...
1
vote
4answers
65 views
javascript convert string to array with checkbox for each array [on hold]
please see the jsfiddle
I want output check-box for each array.
how to create array?
how to add check-box with unique name to array?
Whatever is in the textbox, Separate words and convert to ...
0
votes
2answers
30 views
showing set of divs based on checkbox selection
I'm trying to find JQ alternative for this script link to see exampe the problem is that I want to use classes instead of IDs, and single div can have more then 1 class, so can be displayed after ...
2
votes
3answers
23 views
Ruby on Rails, will_paginate, check box
I am using will_paginate to list a huge ammont of files in different pages. I also have a check_box in order to choose files for the futher analysis.
controller:
@files = ...
0
votes
0answers
39 views
Save state of DIV element to LocalStorage
I would like hide/show some div's elements, depends on the checkboxes.
I have checkboxes, state was saved to localStorage but my DIV element after refresh are unsaved (load with default state). ...