In my GWT project I would like to:
Set a filter for the FileUpload widget so that it only accepts JPG files.
Enable
myButtonif the FileUpload widget, calledchooser, has any file choosen. And disablemyButtonotherwise.
This is my code for point 2, but it does not work. Any ideas? Thanks in advance!
chooser.addAttachHandler(new Handler() {
public void onAttachOrDetach(AttachEvent event) {
if(chooser.isAttached()==false && myButton.isEnabled()==true)
myButton.setEnabled(false);
else if(chooser.isAttached()==true && myButton.isEnabled()==false)
myButton.setEnabled(true);
} });