-
1 Apr 2011 1:27 AM #21
hi can any one please tell me how can i use this awesome uploder in my application?
iam using IE7 and iam not using PHp , .Net and flash.I need it in pure Extjs.
If i try to run this, in sample example, Browse button is not appearing? Thanks in advance
-
1 Apr 2011 1:30 AM #22
for file upload you always need a BE, you can't handle file uploads in ExtJS only, there is no connection from javascript to filesystem!
vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
1 Apr 2011 1:45 AM #23
-
1 Apr 2011 1:47 AM #24
BE = Backend, means php or other server applications
vg Steffen
--------------------------------------
Release Manager of TYPO3 4.5
energlobe.de - german online magazine
-
1 Apr 2011 1:52 AM #25
-
15 Jul 2011 3:34 AM #26
Hi,
I'm using Awesome Uploader on my page and i have one problem. When I'm using drag&drop files are uploading more than one in the same time. Is there any chance to make it one by one?
I'll be very glad for any solutions.
-
17 Oct 2011 5:17 AM #27
If anyone needs the classic asp version of the xhrupload, here it is:
Code:<% Response.Buffer = TRUE Const adSaveCreateNotExist = 1 Const adSaveCreateOverWrite = 2 ' Mode for ADODB.Stream Const adTypeBinary = 1 ' Binary file is encoded Dim filename, filepath, savedfile, returnMessage filename = Request.ServerVariables("HEADER_X-FILE-NAME") filepath = Server.MapPath("\") & "\ext-3.3.1\examples\AwesomeUploader\uploads\" On Error Resume Next Dim objStream Set objStream = Server.CreateObject("ADODB.Stream") objStream.Type = adTypeBinary objStream.Open objStream.Write Request.BinaryRead(Request.TotalBytes) objStream.SaveToFile filepath & filename, adSaveCreateNotExist objStream.Close Set objStream = Nothing If Err Then returnMessage = "{""success"":false,""error"":""That file already exists""}" Else returnMessage = "{""success"":true}" End If On Error Goto 0 Response.Write(returnMessage) %>
-
25 May 2012 2:10 AM #28
Problems with rendering grid
Problems with rendering grid
Hi,
Can anyone help me, I just do everything as explained in example and get only BROWSE button, but no grid after it.
I tried to find where does that grid should be created and rendered, but can't find any grid in all *.js files of AwesomeUploader.
I just copied the whole folder to my ext js folder, and make changes in paths for root and pics.
Thanks in advance,
Best regards,
Artak Hamazaspyan
-
5 Oct 2012 4:02 AM #29
Hey ...
I need 2 more events .. beforeupload and after upload .. can someone please let me know how to implement these two ?
Kind regards
Armando
Similar Threads
-
Ext.ux.Plupload[Panel|Button] (file uploader)
By Kannabismus in forum Ext 3.x: User Extensions and PluginsReplies: 28Last Post: 29 May 2012, 3:11 AM -
File Uploader field disapear after second time being rendered
By ipreti in forum Ext 3.x: Help & DiscussionReplies: 2Last Post: 28 Sep 2009, 4:21 AM -
How can I create file uploader using ExtJs?
By diamondvd in forum Ext 2.x: Help & DiscussionReplies: 3Last Post: 19 May 2008, 10:31 PM -
How to drag&drop and copy file...
By C.Jano in forum Ext 2.x: Help & DiscussionReplies: 3Last Post: 30 Apr 2008, 4:41 AM


Reply With Quote