Hello Reinier:
> and it's clearly the 'sender'. If you then want to know what was
> clicked, use the methods on listbox to figure that out.
So I guess i cannot do something like this:
ListBox.onClickListener(new ClickListener(){
onClick(Widget sender){
String myItem = (ListBox)Sender.getSelectedItem();
}
}
I need to do this because the click is caught by another composite
widget which does the processing, and it doesn't have access to this
listBox.
ps the above code is from memory, so might not be syntactically
correct.