Can you tell me what is the maxsize of upload with Ext.ux.UploadDialog.Dialog?
Printable View
Can you tell me what is the maxsize of upload with Ext.ux.UploadDialog.Dialog?
It's the same as for standart HTML input type = "file" element.
I´m a newbie in this javascript subject.
Could you send me an full example of implementation of your wonderful upload extension?
I need a full example, like the php file with the necessary items.
I try to look in the code, look for php samples, but no success.
Sorry about this subject, but i´m not familiarized about javascript yet.
Thanks.
1. Ext 1.1 version of the dialog is not supported anymore.
2. I don't use any special PHP code at the example's site, it's no more then
3. To recieve an uploaded file you don't have to do any special handling besides described here http://php.net/manual/en/features.fi...ost-method.phpCode:<?php
$response = array(
'success' => true,
'message' => 'Ok. ' . filesize($_FILES['file']['tmp_name']) . ' bytes uploaded.'
);
echo json_encode($response);
Your nice documented files and follow-ups ad to your nice development =D>
A server-side browser with filedetails, maybe even with a visualisation of image files would be nice to. (or a image thumb in the upload grid)
(details...)
regards,
Chris.
Hi Maxim GB
Thanks so much for the extension.
I wonder if there is any plan to upgrade it to be compatible with Extjs 3.0.0.
My donation reference is 13017068
Yes, I have plans to upgrade the upload dialog to ExtJS 3.0, actually I'm going to create more robust upload solution, I'm going to divide the dialog into three independent components: upload queue, upload panel, and upload dialog. But as usual I'm short of time, the extension might be ported at the end of August.
Any news about the new version? I think there are lots of people waiting, besides me :)
@overnoise,
Hi Overnoise and others waiting for upgrade of the UploadDialog, may be if you all make a donation to MaximGB, we can all give him a stronger motivation to help us with the upgrade.
Thanks
Donations are always welcome of course, but right now I'm just busy with two other projects. There is a message in UploadDialog 2.x thread, bjt succeeded in porting the extension to ExtJS 3x, try use it until I have time to port by myself.