A checkbox is a graphical user interface element that permits the user to make a binary selection.
1
vote
1answer
21 views
Can you assign two buttons to trigger animations to one element in CSS?
I need a wide div or table divided in three tds. The middle one is visible (which I achieved by putting it into another div with overflow:hidden and absolute positioning within relative positioning). ...
0
votes
1answer
28 views
check all check boxes only in one table
I have multiple tables with rows of check boxes and want to perform a select all if the header check box is selected. I am trying to do this with jQuery without parsing or passing in the table id. ...
1
vote
1answer
17 views
Remove contour checkbox in jquery Mobile
I got this, but I do not want the yellow outline. How can I do?
My code:
<div class="ui-block-a">
<div class="ui-bar ui-bar-e" style="height:50px">
...
0
votes
0answers
34 views
Using foreach loop to checked checkbox answer
Currently, I have a column in database called answer to store all the answers for the form submitted. For now, the form itself have a "save" button whereby user can save the form if they're not free ...
0
votes
0answers
17 views
Drupal checkbox and radio suddenly very small
I am working on a drupal website. Installing modules, adding CSS, when suddenly all my radio buttons, checkbox btns etc became very small.
I have removed all my css and disabled the latest installed ...
0
votes
1answer
19 views
Select Checkbox when its Value Equals the String from the EditText field
Problem: In my app, there exists two different ways for a user to add an item to a list: via a TextField and via checking an element in an ExpandableListView. Every time the user enters an item into ...
0
votes
2answers
12 views
ListView with Checkboxes, issues with scrolling
I've looked into several other solutions for this problem, but none of them seem to do it for me, just because they are all fundamentally different. I have in my Adapter the PackageInfo class, which ...
-4
votes
1answer
28 views
PHP: Display image 1 if checkbox is checked, image 2 if is unchecked
this is my html:
<input class="no-check-border-win" type="checkbox" name="Elevator" value="y"
[elevator]/>Elevator<br />
where [elevator] is:
if ($_POST['Elevator']=='y') echo ...
0
votes
3answers
27 views
Disabling click event changing IsPressed on wpf checkbox
Due to strange requirements, I need to disable the user's ability to change the IsChecked property of a checkbox through the click event. I cannot disable the checkbox because right-clicking on it ...
0
votes
2answers
48 views
Select All Checkbox from MYSQL
Today I'm currently using "Checkbox" and just a little problem. I have a dropdown list in my first page, I choose the items "DropDown 1" and then I click the Submit button after that it will go to the ...
0
votes
2answers
29 views
Storing information from ListView Adapter without SharedPreferences?
I have an adapter that extends BaseAdapter; within are defined two checkboxes.
public View getView(int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
LayoutInflater ...
0
votes
0answers
12 views
Random Checkboxes Added in ExpandableListView
I have implemented an ExpandableListView from http://prativas.wordpress.com/category/android/expandable-list-view-in-android/, where there are checkboxes for the child and the parent. However I am ...
0
votes
1answer
13 views
Tapestry 5 how to get a checklist with a behaviour like <table t:type=“grid”>
I am looking for something like but in a checklist. I want to select (using the checkboxes from the checklist) some items from a list of objects I get from my DB (implemented on my services, using ...
0
votes
1answer
30 views
ListView listed apps with checkboxes?
I have all downloaded apps in a ListView and next to each one are two Checkboxes so you can categorize each app in either Category1 or Category2. I'm confused with how to incorporate CheckBox ...
0
votes
1answer
22 views
Django checkbox display content
I try to display different content.
But something i make false.
If i check pid it must show only pid's, if i check pid and title it must show both.
In my example i show both, but how i can change it ...