What method is used to know the status of Checkbox(i.e it
is checked or unchecked)?
Answer Posted / latha
Hi guys, while posting questions in forum make sure that
the question that has been posted by you has clarity or not.
For this question two possible answers are there, they
belogs to
1. AWT controls
2. Java script
Both are having different methods to know the selected
check box value.
Coming to AWT controls, the solution is..
ItemEventobject.getStateChange()==ITEMEVENT.SELECTED
is the syntax to know the selected check box.
Eg::
public void itemStateChanged(ItemEvent ie)
{
double price = out.getPrice();
if (ie.getStateChange() == ItemEvent.SELECTED)
price += 0.50;
else price -= 0.50;
}
In javascript it is so easy to select the checked check box
value by using "checked" property.
Regards
Latha
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can the interface be final?
How can you add and remove nodes in jtree?
what are synchronized methods and synchronized statements? : Java thread
Why java does not support pointers?
What is local declaration?
Is java developer a good career?
What happens when you invoke a thread’s interrupt method while it is sleeping or waiting?
What Is Composition?
What is the use of list in java?
Explain about main thread in java?
What is string literal in java?
What is a finally block?
What do you understand by the bean persistent property?
How many bytes is a string java?
What is passing by reference in java?