A checkbox is a graphical user interface element that permits the user to make a binary selection.
2
votes
0answers
39 views
autocomplete = “off” ignored in IE?
I have a form with checkboxes, with their 'checked' value being populated from code behind in a database.
Imagine, if I have checkboxes 1,2 and 3 all set to checked in the database. I load the page, ...
2
votes
0answers
42 views
Custom CheckBox of MultiChoiceItems in AlertDialog
I seek how to custom a CheckBox in my MultiChoiceItems (i think the original on the phone is not good).
MultiChoiceItems is in a AlertDialog:
AlertDialog.Builder builder = new ...
2
votes
0answers
148 views
GMap V3 Multi Criteria Check Box Filtering
Been working on this for a week and could do with some guidance:
Need to use two columns of check boxes to filter markers on map.
Column 1 is: data.ConType
Column 2 is: data.Operator
I need it ...
2
votes
0answers
143 views
system.reflection.eventinfo does not contain definition for GetValue
It's easy to obtain the values for the properties and fields or invoke methods but it has been difficult for me to display the Event handlers. I can't just use a GetValue function like I can for ...
2
votes
0answers
564 views
Custom List View Adapter having checkbox with Listeners
I am having a list view with onItemClickListener and a custom adapter with a checkbox. The checkbox also has a onClickListener. But the arraylist that i am assining to the adapter is not showing the ...
2
votes
0answers
161 views
TinyMCE 4: Allowing select and input checkboxes to be editable
An HTML template that I'm working on has a variety of HTML select and checkbox elements contained within it.
Eg.
<select>
<option></option>
<option>No</option>
...
2
votes
0answers
205 views
How to make automatic onClick and update mark image in Gridview
The first question that I have is that I have downloaded from the Internet MarkableImageView class to add a marker to an image I have already selected. The class is as follows:
public class ...
2
votes
0answers
663 views
JSF2 or primefaces p:selectManyCheckbox styling with icons
One question who styled manycheckboxes with icons?
<p:selectManyCheckbox value="#{Step4Bean.selectedItems}" id="tag-list" >
<f:selectItems ...
2
votes
0answers
1k views
Qt - QTreeView and custom model with checkbox columns
I wanted to have a tree view which shows the item name, the item description, and two related Boolean values in respective columns. I started by modifying the Editable Tree Mode example, so there's a ...
2
votes
0answers
274 views
jQuery filter according to checkbox status
I'm using jQuery "filterable" plugin to filter data, this plugin originally filters data by clicking on category's name link, now I'd like to change link to check box, so if checkbox is checked that ...
2
votes
0answers
359 views
How to add checkbox values to the jQuery (Mobile) Listview filter input box?
I want to be able to use checkboxes and append their values into a jQuery (Mobile) Listview (this one). I managed to stick an id attribute onto the input-field which i thought might be necessary? Also ...
2
votes
0answers
986 views
Extjs 3.4 checkchange listener not working on Checkcolumn
The checkchange listener for my checkColumn is not working. Any ideas why not?
var checked = new Ext.grid.CheckColumn({
header: 'Test',
dataIndex: 'condition',
renderer: function(v,p,record){
...
2
votes
0answers
1k views
Android; Using SimpleAdapter with setOnItemClick a Listview containing Checkboxes
I have a ListView in an Activity (Not ListActivity) that is populated by a SimpleAdapter.
public void updateGroupsInfoPane(){
final ListView m_listview3 = (ListView) ...
2
votes
0answers
1k views
Update Database From Checkbox In ListView Using CursorAdapter
I have a custom CursorAdapter that populates a ListView of Tasks from my database. Each ListView item has a checkbox and a button in it. When pressing the checkbox, the database gets updated to set ...
2
votes
0answers
2k views
Spring Form Taglib Checkboxes and the Default Value
I am trying to display a list of checkboxes based on a list of data that I have. I have managed to do this, however, I don't seem to be able to set the checked values for the required items.
If I ...