Re: Wicket and file upload with blueimp jquery file upload

2012-11-16 Thread Raul
, maxHeight: 900 }, { action: 'save' } ] }); }); -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-file-upload-with-blueimp-jquery-file-upload-tp4653007p4653938.html Sent from

Re: Wicket and file upload with blueimp jquery file upload

2012-11-15 Thread Raul
to me), when I upload multiple files at once, only shows the bar and the buttons for the first file. And should display them at all. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-file-upload-with-blueimp-jquery-file-upload-tp4653007p4653903.html Sent

Re: Wicket and file upload with blueimp jquery file upload

2012-11-15 Thread Martin Grigorov
of the article - I am disappointed from the widget. Its docs do not explain all the hidden requirements for the UI part of it. If you fix these issues then I'll be happy to apply your improvements. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-and-file-upload

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Martin Grigorov
Hi, I've just added a new article at http://wicketinaction.com/2012/11/uploading-files-to-wicket-iresource/ that shows how to integrate such JavaScript file upload widgets with Wicket. I hope it is useful for you! On Wed, Oct 24, 2012 at 1:54 PM, heapifyman heapify...@gmail.com wrote: Thanks.

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Pierre Goupil
Good morning, Would guys be kind and share these codes, please? Not re-inventing the whell, you know. Thanks in advance best regards, Pierre On Wed, Nov 14, 2012 at 10:51 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I've just added a new article at

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Martin Grigorov
There is a link to my GitHub repo in the article. On Wed, Nov 14, 2012 at 12:00 PM, Pierre Goupil goupilpie...@gmail.comwrote: Good morning, Would guys be kind and share these codes, please? Not re-inventing the whell, you know. Thanks in advance best regards, Pierre On Wed, Nov 14,

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Pierre Goupil
Thanks! Sorry for not having read it until the end! :-) On Wed, Nov 14, 2012 at 11:03 AM, Martin Grigorov mgrigo...@apache.orgwrote: There is a link to my GitHub repo in the article. On Wed, Nov 14, 2012 at 12:00 PM, Pierre Goupil goupilpie...@gmail.com wrote: Good morning, Would

Re: Wicket and file upload with blueimp jquery file upload

2012-10-24 Thread heapifyman
Thanks. That helped a lot. 2012/10/16 Bas Gooren b...@iswd.nl Behavior (wicket 1.5): http://pastebin.com/WUHsiRL2 instance.js (to initialize uploadify): http://pastebin.com/jGSwzHMN Mount it in Application.init() with: // Allow uploads through uploadify mount( new

Re: Wicket and file upload with blueimp jquery file upload

2012-10-16 Thread Martin Grigorov
Hi, Is it an option to upload to a IResource and store the uploaded data the same way as if you'd do in the page ? On Tue, Oct 16, 2012 at 12:49 PM, heapifyman heapify...@gmail.com wrote: Hello, has anyone tried yet to integrate blueimp's jQuery File Upload

Re: Wicket and file upload with blueimp jquery file upload

2012-10-16 Thread heapifyman
Not sure if I understand. As far as I got it, the upload plugin requires some web service that accepts POST and DELETE requests to add/remove uploaded files. Doing that is no problem, I guess. But how to I link this with the current user's wicket session so that I know which files the users

Re: Wicket and file upload with blueimp jquery file upload

2012-10-16 Thread Bas Gooren
Hi! We use a different uploader (uploadify), but the basics are the same. What we've built for this is a behavior which renders the UI for the uploader, and handles ajax callbacks. The uploader uploads to a mounted resource (e.g. at /uploadify), which has an internal cache (UUID =

Re: Wicket and file upload with blueimp jquery file upload

2012-10-16 Thread heapifyman
Thanks. Would you mind sharing the mounted resource's code? I'm not completely sure how to implement that. 2012/10/16 Bas Gooren b...@iswd.nl Hi! We use a different uploader (uploadify), but the basics are the same. What we've built for this is a behavior which renders the UI for the

Re: Wicket and file upload with blueimp jquery file upload

2012-10-16 Thread Bas Gooren
Behavior (wicket 1.5): http://pastebin.com/WUHsiRL2 instance.js (to initialize uploadify): http://pastebin.com/jGSwzHMN Mount it in Application.init() with: // Allow uploads through uploadify mount( new UploadifyBehavior.Uploader( /uploadify ) ); Use it like this: component.add( new