-
4 Jul 2008 1:51 AM #141
Please post in the Ext 2.x extensions forum thread next time. I can't confirm the bug, can you provide me a link to online bug demo, and / or your server side code where you check for 'comment' param.
Use the force - read the source.
My ExtJS extensions can be found here: http://max-bazhenov.com/dev/
-
4 Jul 2008 2:04 AM #142
One more thing...
In file locale/ru.utf-8.js look at last string : note_aborted. There is comma at the end of the string, but it shouldn't be there.
-
4 Jul 2008 2:23 AM #143
Thanks for report.
Use the force - read the source.
My ExtJS extensions can be found here: http://max-bazhenov.com/dev/
-
25 Jul 2008 12:45 PM #144
I'm in trouble after the upload.
I'm in trouble after the upload.
I'm in trouble after the upload when I try to run rmdir() of php. What?
Sorry my English.
-
20 Aug 2008 10:29 AM #145
Hi MaximGB, im new on ExtJS and its amazing what u can do with this framework
first than all, your plugin is wonderfull and i've trying to make it work on my project but i can't
I can make popup the uploaddialog but when i click the upload button, inmediatly get the legend "Update error", so i'm here asking for your help



this is my js code
and this is my php codeCode:... if (!dialog) { var dialog = new Ext.ux.UploadDialog.Dialog(null, { autoCreate: true, closable: true, collapsible: false, draggable: true, minWidth: 400, minHeight: 200, width: 400, height: 350, proxyDrag: true, resizable: true, constraintoviewport: true, url: '/upload/loadPicture.php', reset_on_hide: false, allow_close_on_upload: true, upload_autostart: true, base_params: { reqaction: 'uploadfile', resptype: 'json' } }); } dialog.show(); ...
i hope u can tell my where is the errorPHP Code:$uploaddir = 'C:/Xampp/htdocs/ug/upload/';
$uploadfile = $uploaddir . basename($_FILES['file']['name']);
if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadfile)) {
$response = array(
'success' => true,
'error' => 'OK.'
);
}
else {
$response = array(
'success' => false,
'error' => 'Description of the error occured.'
);
}
echo json_encode($response);
thanks a lot beforehand
-
14 Oct 2008 6:34 PM #146
I'm trying the uploadDialog with Google Chrome and it saves the file to size of 0 therefore not saving the file data. Anyone else have this problem?
-
14 Oct 2008 11:34 PM #147
I don't. I've just checked the Google Chrome on the demo and everything works ok.
p.s. Next time please use the correct thread for 2.x version of the dialog.Use the force - read the source.
My ExtJS extensions can be found here: http://max-bazhenov.com/dev/
-
20 Oct 2008 4:18 AM #148
I'm actually using ext1.1.1 and uploadDialog for 1.1
Here's my code.
It works perfectly with firefox and IE but google chrome is not sending the data. Therefore the "file" variable passed to the server on the post has no data.Code:uploaddlg = new Ext.ux.UploadDialog.Dialog(null, { autoCreate: true, closable: false, collapsible: false, draggable: true, minWidth: 400, minHeight: 200, modal:true, width: 400, height: 350, proxyDrag: true, resizable: false, constraintoviewport: true, title: 'Upload', url: '<@appfilepath>jsonController.taf?function=uploadLogo', reset_on_hide: true, allow_close_on_upload: true, upload_autostart: true, permitted_extensions: ["gif","GIF","jpg","jpeg","JPG"] });
-
20 Oct 2008 5:01 AM #149
Sorry, but 1.x version of the dialog is not supported any more.
Use the force - read the source.
My ExtJS extensions can be found here: http://max-bazhenov.com/dev/
-
24 Oct 2008 10:22 AM #150
The issue is with Google Chrome not being able to send the content type post header for upload.
Anyone else with the same issue and has a work around.


Reply With Quote