Tagged Questions
1
vote
0answers
26 views
Filtering data with checkbox , how should i do it?
Im trying to filter the data I retrieve from a web service and Im trying to do some filtering of the data retrieved based on the category checkbox checked by the users. Here is a sample of my code for ...
1
vote
0answers
179 views
Creating a three states checkbox on android
i'm stuck in front of a big probleme:
I'd like to make three state checkbox on android.
It's a checkbox upon a ListView with checkboxes. It should allows user to switch between three states:
all ...
1
vote
0answers
118 views
Java Applet Checkbox bug
I am having problems with my java checkbox applet. I got it mostly working but I ended up with a minor bug. When I select soup the salad should be grayed out (and it is), but if I already have ...
1
vote
0answers
388 views
Spring form checkboxes - matching by toString() thus checking off wrong checkboxes
I have a domain object ContactGroup which holds a ManyToMany reference to another domain object, Person:
@Entity
public class ContactGroup {
@ManyToMany
private Set<Person> members = new ...
1
vote
0answers
888 views
JCheckBox in a Jtable's column isn't working
I need to put a checkbox in the column Present to mark when a guest arrives (it's a application to manage events)
String[] columns = {"Name","Present"};
Object[][] listInv = {
{"Giacomo Guilizzoni", ...
1
vote
0answers
265 views
Best way to pass values of multiple checkboxes to server
What is the best solution to this scenario: I have a SOAP based webservice implemented in Netbeans where the client is supposed to click on a number of checkboxes which are then sent to server and ...
1
vote
0answers
122 views
Correct Format for DefaultTreeSelectionModel.addSelectionPaths()
I'm working with a class that extends the DefaultTreeSelectionModel to create a CheckBoxTree. When clicking a checkbox node on the tree it fires a MouseEvent which gets the TreePath directly from the ...
0
votes
0answers
41 views
Select all checkboxes is not working properly
Here is my code:
when i am trying to click my selectbox all its child selectboxes needs to selectable and when i uncheck the select box all its child selectboxes needs to Unselectable.i tried in ...
0
votes
0answers
59 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
0answers
52 views
End incoming call when sensor receives certain value android
I'm trying to implement a program that ends a call when the magnetic field sensor has been changed by a certain value. I have managed to display a toast to show that the application does detect this ...
0
votes
0answers
75 views
Update database on the basis of checked/ unchecked in JTable
I'm in the process of making an attendance application. Right now, I'm working on building the table that will hold the students and allow the user to mark students as absent/present.
The compilable ...
0
votes
0answers
46 views
Checkbox - Firing event on checked
I'm using the following to check when a checkbox is clicked, if the textbox is empty, pre populate some text. This works if theres something in the checkbox, but if I do it when theres nothing in the ...
0
votes
0answers
106 views
Getting the values previously selected from checkbox in a session
Well, I need to select values from a checkbox and then display it on a new jsp page. Its working well for the first time. But when i am selecting new values, it shows the previously selected values ...
0
votes
0answers
94 views
Android: Set a checkbox to “checked” from a different fragment
is there any way to set a checkbox to "checked" from a different fragment?
I'll try to explain better; My app got different fragments, and, in every fragment there are some checkbox. I just made on ...
0
votes
0answers
157 views
UI: Use Checkbox to make components visible and invisible? JDeveloper AWT
I have a question. I have an UI Frame with several components (e.g labels, buttons, textfields). I am using Jdeveloper, AWT.
I have, in the Frame design, set the components visibility to false making ...