What method is used to know the status of Checkbox(i.e it
is checked or unchecked)?
Answer / 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 |
What is the main use of java?
Can I overload to string method
What is map and hashmap in java?
Explain the difference between static and dynamic binding in java?
Explain about member inner classes?
Can we change the scope of the overridden method in the subclass?
What is nested interface?
Difference between Array and vector?
1.) if we use "private" in place of "public" in public static void main()... 2.) if we use "int" in place of "void".... 3.) can we ommit "static" keyword from that statement.... 4.) also can we give the command line arguments type as int type or float,etc.(.i.e (string args[]))
What is %d in printf?
What is classes in java?
what is the purpose of class "Object" which is base class for all classes?