posted 17 years ago
this still doesn't make a lot of sense to me
from your first post:
I have to execute a Action event on a button after i execute the ChangeEvent on an editor.
from your last post:
//here i want to set the values for ed2 and then also perform the button click operation.
and in 'Ed1ChangeListener'
ed2.populateValue();
so, it seems the changeListener will 'set the values for ed2',
but from your second post:
Now, if the user enters a value on the editor and clicks the button,
if it does all happen from the button click, it would be just
public void actionPerformed(ActionEvent e) {
c2.ed2.populateValue();//then
// Do some operation
}
but then the changeListener would not be required??