-
19 Sep 2007 6:06 AM #131
Has anyone try to use this great extension with 2.0?
Im not able to do it
-
19 Sep 2007 9:51 AM #132
It was written in and for 1.1.1; it needs refactoring for Ext 2.0. I will move all my apps and extensions to Ext 2.0 when RC1 will be out.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
25 Sep 2007 7:24 AM #133
This is great! However I see you are using PHP as the backend. Is it possible to use this with ASP.NET? Has anyone tried this?
-
25 Sep 2007 8:34 AM #134
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
25 Sep 2007 7:55 PM #135
Hello... Awesome job man...
I have been reading each post, and I haven't been able to figure out what function gets called after the upload is complete. I see an event "onFileAdded" but I would like to know if there is something I can pass via the config that will set that up for me..
I'm passing "callback" but it doesn't seem to get called...
My server side returns:
and im using:HTML Code:{"success":true}
Code:var upform = new Ext.ux.UploadForm('uploader_container', { autoCreate: true , url: '/up.php' , method: 'post' , maxFileSize: 1048570 , iconPath: '/images/silk/' ,callback: function () { alert('test 2'); } , baseParams: { mode:'upload_listing_image' , callback: function () { alert('test 1'); } } });
-
26 Sep 2007 9:25 AM #136
onSuccess and onFailure are called internally each of them calls processResponse in turn. You can override them or, maybe even better I can add uploadsuccess and uploadfailed events that would be fired from these functions.
Do you want me to do so?Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
27 Sep 2007 8:54 AM #137
Hello,
I believe it'd be great to be able to know when the file is uploaded. I was trying to figure out how were you doing it with the filetree, because it refreshes when the upload is done.. but I couldn't find exactly what triggered it.
Shortly after I started trying some of the internal events I found in the code and found that
does the trick.. but it also gets triggered when the user stops the upload, or when it fails im guessing.Code:upform.on('stopupload', function () { alert('Im done'); });
However, adding the events you suggest would be a lot more elegant as you could make it so that it passes more information to the event handler.
Thanks again, this widget rocks!
-
29 Sep 2007 12:10 AM #138
Hi,
It'd also be cool if you could specify a maximum of files that can be added. E.g. when you only are allowing people to upload 5 files, or usually when you only want one file...
Just an idea..
thanks again!!
-
29 Sep 2007 2:21 AM #139
I haven't added this as if user has limit (let's say 5) then he can repeatedly upload files in 5-count chunks. If you really want to limit upload count then it's better to limit it at server side. Or you can override createUploadInput method - but you cannot prevent repeated uploads by this.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
1 Oct 2007 3:50 PM #140
I love the way you wrapped the file with a button and changed it`s opacity to 0.
What I don`t understand is how you managed to prevent the user from clicking on the input field outside the button.
When I`m looking at the field with FireBug I can see it extends on the left of the widget but when I try to click it I can`t.
How do you do that?


Reply With Quote

)