A checkbox is a graphical user interface element that permits the user to make a binary selection.
2
votes
4answers
32 views
Checkbox javascript 2 conditon to delete
I have checkbox
<input type="checkbox" id="checkboxid" name="checkboxname">
and button delete
<button id="btnDeleteid" name="btnDeletename">Delete</button>
How does the ...
0
votes
0answers
6 views
LocalStorage remembers checkboxes and completed certificate of a quiz
I have a quiz with a series of questions... when you get a question correct, it reveals the next question, etc. At the end, it shows a "completed certificate" type image inside a div. The quiz ...
0
votes
2answers
20 views
Checkbox binding in Knockout with array
I have a question about knock out, here is my code in HTML and Javascript, can you tell me what is wrong with my code, when I click on check box the related isWaived in not checked
<input ...
0
votes
2answers
26 views
browser back issue with javascript disable submit until checkbox
I've tried a few but similar ways of disabling a form submit button until a checkbox is checked.
<input type="checkbox" name="toc" value="accept" onclick="formsubmit.disabled = !this.checked" ...
0
votes
1answer
28 views
Knowing the values of check box in the controller with razor
I have a asp.net mvc application with razor engine.
In a view Home i have this snippet:
<section id="form_admin">
<form action="/Super/Manipuler" method="post">
<fieldset>
...
0
votes
1answer
24 views
Call checkbox value if checked from html file in javascript function
I have two files: myPage.html and myCode.gs in google scripts. I have deployed the html file as a web app, and I have figured out (with help) how to make the onclick event for the 'submit' button to ...
0
votes
0answers
16 views
change width+height of an AlertDialog with checkbox
was working on an alertdialog with checkbox something like this
CharSequence[] items = {"Google", "Apple", "Microsoft", "Google", "Apple", "Microsoft"};
boolean[] itemsChecked = new ...
0
votes
1answer
19 views
How to get text of particular position on click of checkbox in ListView Android
i want to get text of position of listview having check box is chacked .Listview comtains textview and checkbox coming from baseadapter
holder = new ViewHolder();
holder.full_name = ...
1
vote
0answers
4 views
CakePHP and multiselect checkbox
I'm sorry I've looked everywhere. For sure I'm doing a basic error in PHP using arrays. FormHelper returns me the correct HTML input checkbox only when I use the parameter 'selected' => array ...
0
votes
2answers
29 views
Uncheck AlertDialog check list box programmaticaly
I need to uncheck checked checkbox programmaticaly, but the check list is in dialog. Does this changes solution? What I have so far:
CharSequence[] items = itemList.toArray(new ...
0
votes
1answer
39 views
How to get more than one value returned from checkbox
I need to get all the values in a check box. So far, when I try to get the result of the post, I only get the last value checked. How can I get all the values? The html is below:
<input ...
0
votes
1answer
21 views
Zurb Foundation checkbox looking funny when publishing live
I have a simple Foundation checkbox according to these docs. Looks great locally:
However, when I publish to Heroku, my checkboxes all look like this, no code was changed:
Any ideas? Here's my ...
-4
votes
1answer
39 views
How to check if checkbox is chacked with if [duplicate]
First of all, sorry if my english is bad.
I'm new to Java and I have to do an exercise for my school.
At the start I got a standard price of 8 euro's for a pizza. When I check the jCheckbox which ...
4
votes
1answer
30 views
Get values of all checkboxes in repeater
When the user clicks a "Save Changes" button, I need to get the values of all the checkboxes inside a repeater. If I can't get the values, the ID is also ok.
Master page code:
<ul ...
0
votes
2answers
38 views
Uncheck check list box programmaticaly
I need to uncheck checked checkbox programmaticaly, but the check list is in dialog. Does this changes solution? What I have so far:
CharSequence[] items = itemList.toArray(new ...
0
votes
3answers
29 views
target div with a checkbox
I have a checkbox which hides/shows a div. It works when I put the checkbox directly above the div. When I place the checkbox somewhere else in the page (for better usability) it doesnt't work. Is ...
3
votes
1answer
67 views
post value of hidden textboxes
i have this code:
<?php
$result = mysqli_query($con,"SELECT * FROM table");
while($row = mysqli_fetch_array($result)){
echo "<input type=\"checkbox\" id=\"$row[use_id]\" name=\"things[]\" ...
0
votes
0answers
28 views
trouble getting php checkbox values to show up in resulting email
I've been looking for an answer for hours, and have tried multiple solutions from these boards and others, and I still can't find the answer.
I'm really only looking to receive the checkbox data from ...
0
votes
0answers
40 views
Single Selection of checkboxes in Jtable Column
I have a Jtable with three column . The last columns contains checkboxes . I need to enfore single selection model on them . Although i know it can be done via adding a table change listener and ...
0
votes
1answer
8 views
Checkbox Reference Value in LibreOffice Base Form
I want to make a checkbox in the form editor of Base to fill boolean values (in this case, "Male", and "Female") in my table.
I am currently stuck in the checkbox control window's "Data" tab because ...
0
votes
0answers
8 views
How to change the color of √(check mark) in checkbox in windows phone develop
How to change the color of √(check mark) in checkbox in windows phone develop??
I have watched the background and foreground
neither of them are correct
Need I use a template or style or something ...
2
votes
4answers
54 views
asp.net mvc @Html.CheckBoxFor
I have checkboxes in my form
I added at my model
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CorePartners_Site2.Models
{
public class ...
0
votes
4answers
72 views
customised listview using arrayadapter class in android
how to select row item using Tick mark like iphone in android?iam using imageview in list_row.xml.when i click the list row item then i show image in row imageview.
if(getItem(position)!=null){
...
2
votes
1answer
45 views
Element has `checked` attributes but isn't checked?
I am using ThreeDubMedia's drag and drop selection feature to check and uncheck a couple checkboxes. It will check and uncheck them once, but no more than that. What's more, when I look at the ...
1
vote
7answers
52 views
Javascript: Change label background color on checkbox
I am trying to change the background color of a label in each checkbox in a form based on the checked/unchecked state of the checkbox.So far I got it to change initially, but it won't change back when ...
1
vote
2answers
24 views
JQuery: uncheck subchild checkbox inside ul li
i have a code like this:
<ul>
<li><input type="checkbox" level="child" name="somename1" value="1" /> Child 1</li>
<li><input type="checkbox" ...
0
votes
2answers
40 views
ASP.NET How to show AjaxControlToolkit Modal Popup from CheckBox
I need to show an AjaxControlToolkit ModalPopupExtender control, when user checks/unchecks a CheckBox control that is inside a GridView as a TemplateField.
-- Updated on 24/05/2013
See final ...
0
votes
1answer
41 views
Why I can't disable multiple checkbox with IE with this JS script?
I did a simple script in order to disable multiple checkboxes on my .ASP App. Here's the code :
function updateCheckboxes(cb)
{
if (cb.checked) {
document.getElementById("cb1").disabled ...
0
votes
1answer
21 views
Android listview with inflated checkboxes not checking all true at once
I am retrieving contacts and displayed it in listview using simpleCursorAdapter. listView is displayed in main.xml and my textview and checkboxes are in listview.xml. My main.xml also have 2 buttons, ...
1
vote
2answers
53 views
Checkbox as image - Background Color
I have followed this link for image Checkboxes
http://jsfiddle.net/jtbowden/xP2Ns/. THe scripts and css worked perfectly.
.checkbox, .radio {
width: 19px;
height: 20px;
padding: 0px;
...
0
votes
0answers
46 views
checkbox handling in yii framework
I try to make the checkboxes in yii framework with foreach and the code i write is
<?php
foreach ($similarEdu as $value)
{
$checkBoxName = $value['checkBoxName'];
...
0
votes
1answer
25 views
ASP.NET MVC Multiple check box
models
public class UserRoleViewModel
{
public UserRoleViewModel()
{
Roles = new List<RoleViewModel>();
}
public string UserId { get; set; }
public ...
0
votes
0answers
8 views
How can i still render checkboxes in my jTable while using DbUtils to get the data from a database
I need help to find a way that my jTable will still render a checkbox, currently a true or false is given in the table. i would like to make a program that shows the user names in a database and a ...
0
votes
5answers
44 views
Remember form checkbox values
I want a form to remember the user's input whenever an error has occurred.
I got this to work using for the text input using:
echo "<input id=\"quote_square\" type=\"text\" name=\"square\" ...
0
votes
0answers
19 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
2answers
91 views
Validating checkbox with javascript
I have problem to validate multi checkbox , I want to check if the user has selected at least one checkbox.
Im try with document.getElementByClassName but does not work
HTML:
<form ...
0
votes
1answer
28 views
How can input change between normal text type and checkbox in cakephp?
In one of my friend's cakephp project,her colleague wrote a checkbox like this :
https://pbs.twimg.com/media/BKt5D1lCAAA1ZfJ.jpg
And he created it in this way:
echo ...
0
votes
0answers
56 views
How to set values of checkbox and combobox by using Extjs Form loadRecord?
When I run form.loadRecord(record);, datas comes to tetfields but checkbox and combo using id value is empty for all... there are many solutions to this issue I tried but it does not work for me.
...
0
votes
1answer
57 views
WPF checkbox IsChecked binding, OnpropertyChanged not working
I have a checkbox in my view and the binding on it is working fine if i do any modification to my object and trigger the propertyChanged event.
On the other side when i click my checkbox i perform ...
0
votes
1answer
17 views
CheckBox error on dialog interface
I'm struggling in a little problem that i can not find! In my main activity i want to display an AlertDialog and have a checkbox if the user do not want display the dialog again.
I can make the ...
0
votes
1answer
21 views
Checkable GridView
Hi I'm writhing a checkable gridView and its working. but not the way its intending (as usual)
everything works like i want except that there is a latency when the the checkbox being drawn.
the grid ...
0
votes
1answer
8 views
TriCheckbox in form?
I'm trying to make a form which allows TriCheckboxes.
For example, it starts out blank, when you click it, it gets ticked, if you click it again it becomes a cross, and if you click it a final time, ...
2
votes
1answer
21 views
Collapse all trees in jquery checkboxtree
I use jquery checkboxtree and I would like to start tree in collapsed mode.
I use this:
$(document).ready(function(){
$('#ch_group_menu').checkboxTree();
});
I will tree and all childs ...
0
votes
2answers
38 views
Checkboxes not displaying Chrome - Work in other browsers
I'm not sure what is going on. There should be a checkbox to the left of "Remember Me" and two test ones at the bottom for I have a bike, I have a car. They display in Firefox but not in Chrome. I ...
0
votes
0answers
13 views
Checkbox control click to create treevew
I have different tabs and under different tabs i have several checkboxes...
For Example ..high level tab name is City
next in that tab page i have another tab control and tabges are like Area and ...
0
votes
1answer
46 views
iCheck plugin with Angular.js
There's an awesome plugin for checkboxes and radio buttons customization (seems to be a best one for that).
https://github.com/damirfoy/iCheck
How do I connect it with Angular.js?
I'm not too ...
0
votes
1answer
17 views
Adding View doesn't Appear
I am trying to add checkboxs to a view that I have on my layout. The problem is that is not showing, but I know that is being added because of getChildCount() at parent view returns a new more item..
...
0
votes
0answers
37 views
jquery unchecked checkboxes changes images
Some details first:
I have 4 image place holders.
I have several checkboxes. Each checkbox is associated with an image.
User is allowed to check off 4 boxes.
When a user clicks on a checkbox it ...
0
votes
1answer
34 views
c# winforms gridview and selection boxes
I have a winforms c# app that displays tabular data from a DB into a gridview control.
I need to programmatically add a final column with a tickbox for each row, in order to find out which rows have ...
-3
votes
2answers
38 views
Keeping checkbox state consistent over multiple checkboxes
I need to check or uncheck automatically two hidden checkboxes when a main visible one is checked.
The three checkboxes are inside a while cycle.
Let me explain myself, this is my form:
<form ...




