EasyUploads add-on

Hi,

IE10 would actually work without flash also:
http://msdn.microsoft.com/library/ie/hh673542.aspx

It would be possible to make it work “flashless” today with some haxies, but I promise to do it cleanly when my ie10 patch to GWT gets through. Go vote for it:
https://code.google.com/p/google-web-toolkit/issues/detail?id=8063

cheers,
matti

Is this already fixed or not? I have the same problem in Firefox. I use Vaadin 7.0.6 and Easyuploads 7.0.1, Firefox 17.0.1, Ubuntu 12.04.
Does anyone know what causes the problem?
I’ve tested in Chrome and works fine.

Hi,
I have a question about accept filter. What is it and what it should look like. Could you give an example of use?
Thanks.

Has anyone else the issue that maven cannot find the 7.0.1 version?

All other versions work, but:


	        <dependency>
			<groupId>org.vaadin.addons</groupId>
			<artifactId>easyuploads</artifactId>
			<version>7.0.1</version>
		</dependency>

does not resolve.

Thanks,
Tom

because it’s org.vaadin.addon not org.vaadin.addons

Hi,

What can I do to cancel an upload in progress? I’m already implementing a MultiUploadHandler, but I did not find a method in related classes to do this.

Thanks in advance!

Hi,
I’ve developed the MultiFileUpload add-on which partly based on EasyUploads. One of it’s benefits, that you can cancel the uploads.
See https://vaadin.com/directory#addon/multifileupload

Hello there!
I have a problem with Internet Explorer and the opening of the dialog of the easy upload. On some machines with IE9 the click on the button opens the file-dialog but on some it doesn’t work at all.
Did anyone have this problem and what did you do about it? I can’t figure it out… :frowning:

hp

Hi,

In multifile upload? In IE it depends on flash, so maybe you don’t have it installed? They have done that for security purposes lately…

Gergely, you could have also contributed features to EasyUploads. I actually just earlier this week received a patch for interrupting uploads. Added it into source control, but didn’t cut a version. Sources for V7 version are in github:
https://github.com/mstahv/easyuploads

cheers,
matti

How can I change “DROP
FILE” label of Multifileupload? I need to do it for internationalization.

Use

MultiFileUpload.setAreaText(String)

Regards

Hello Guys,

I’m trying to use the component EasyUploads with Vaadin version 7.0.7, but the following error occurs:


	... 28 more
Caused by: java.lang.IncompatibleClassChangeError
	at com.vaadin.ui.AbstractComponentContainer.addComponent(AbstractComponentContainer.java:210)
	at com.vaadin.ui.GridLayout.addComponent(GridLayout.java:230)
	at com.vaadin.ui.GridLayout.addComponent(GridLayout.java:296)
(...)

Are there any tricks? It is only paste the JAR in LIB?!

There is no such thing.

Anyone can answer the simple question:

  • The EasyUploads is compatible with Vaadin 7.0.7 ?

Which version you are using? MultiFileUpload.setAreaText(String) should be available since version 0.5.2 (Mar 16, 2013).

I haven’t tested with each and every version, but it should.

cheers,
matti

I’m trying to use the component EasyUploads with Vaadin version 7.0.7, but the following error occurs:


	... 28 more
Caused by: java.lang.IncompatibleClassChangeError
	at com.vaadin.ui.AbstractComponentContainer.addComponent(AbstractComponentContainer.java:210)
	at com.vaadin.ui.GridLayout.addComponent(GridLayout.java:230)
	at com.vaadin.ui.GridLayout.addComponent(GridLayout.java:296)
(...)

Are there any tricks? It is only paste the JAR in LIB?!

In truth, I sanitize the cache and the error is now this:


	... 27 more
Caused by: java.lang.LinkageError: com/vaadin/ui/UI
	at com.vaadin.server.AbstractClientConnector.getUI(AbstractClientConnector.java:451)
	at com.vaadin.server.AbstractClientConnector.markAsDirty(AbstractClientConnector.java:137)
	at com.vaadin.ui.AbstractComponent.setWidth(AbstractComponent.java:816)
	at com.vaadin.ui.AbstractComponentContainer.setWidth(AbstractComponentContainer.java:257)
	at com.vaadin.ui.AbstractComponent.setWidth(AbstractComponent.java:829)
	at org.vaadin.easyuploads.MultiFileUpload.<init>(MultiFileUpload.java:64)
(...)

Hi Gergely, Thanks for the reply. I will test your add-on soon.

Guys, I’m in trouble with the following problem: I set up the easyuploads inside my application on a remote server and the responsiveness while uploading 5-15 files 5-10MB each is very poor, showing the red spinner constantly and freezing the user interaction with the application (this behaviour doesn´t occur in development environment or on the same local network). On the same screen of progress bars, I have some UI components, but the application is frozen while the file is loaded.

Have any of you experienced that? Is there some setting in the JVM, tomcat or Vaadin that I missed that should be made to normalize other interactions while the upload is done?

Thanks!!

Some classes have been compiled against older versions of other classes than the ones you are using.

Perhaps EasyUploads needs to be recompiled for the current Vaadin version, or perhaps there is a mismatch of other library versions somewhere.