Waow, if there is a thumbelize, resize and crop option this is going to be a killer extension !!!
Waow, if there is a thumbelize, resize and crop option this is going to be a killer extension !!!
I cant find where they mention the resize image thing.
Check the wiki, there are several tutorials:
Can you post simple example how to use it with Yii?
It looks and works great, but I dont know how to start with this…
Just simple controller code and simple view. Please ![]()
Can you do this?
How to configure upload path by the controller? (I need pass path so safety for every user)
There is an entire Yii project (demo) in the downloads, what is it you are missing?
sorry, I didn’t see it!
Hi,
How can I call JS code when the queue is empty?
Hi,
great extension, but it would be even better to have some more documentation on this.
For example, i’d like to know how to get functions on the example-site on example-site at appspot, like alert “File to small!”, etc.
Please extend the demo in the extension-zip.
Thx
The documentation in the yii site its about the installation and basic usage, the documentation your guys are asking for, its the jquery documentation.
The answers to all this questions are in the wiki, please take a look there.
Hi, anybody know how to implement multiple instances of the widget in a single page, I’ve created 2 juidialog and loaded a widget on each one from diferent views, but when a add I file to the second xupload widget it is queued to the first one, so how do I add files to each one separately, thank you
The jquery plugin has been updated to a new version, however the new documentation lacks many examples for common task, the old wiki has been restored and the examples are now back for the old version, please vote here to update or not the extension. take into account the lack of documentation for the new version.
The wiki for the original jquery plugin has been restored
You can find the answer to your specific need [here](https://github.com/blueimp/jQuery-File-Upload/wiki/Multiple-File-Input-Fields-in-one-Form "multiple input fields")
Hi.
I’m have a problem whis that extension. I can’t define callback js function.
$this->widget('ext.xupload.XUploadWidget', array(
'url' => Yii::app()->createUrl("admin/images/upload", array("type" => $this->getId(), "item_id" => $model->m_id)),
'model' => new Images,
'attribute' => 'images',
'multiple' => true,
'htmlOptions'=>array('name' => 'images'),
'options' => array
'onComplete' => 'js:function (event, files, index, xhr, handler, callBack) {
console.log("upload finish");
}',
),
));
I have that error
Uncaught TypeError: Cannot read property 'name' of null query.fileupload-ui.js:97
Snippet of this file here
this.removeNode = function (node, callBack) {
if (node) {
node.fadeOut(function () {
$(this).remove();
if (typeof callBack === func) {
try {
callBack();
} catch (e) {
// Fix endless exception loop:
$(this).stop();
throw e;
/*jquery.fileupload-ui.js:97Uncaught TypeError: Cannot read property 'name' of null*/
}
}
});
} else if (typeof callBack === func) {
callBack();
}
};
Please help!
Can you please show the generated javascript code?
callback contains:
function () {
handler.initDownloadRow(event, files, index, xhr, handler, function () {
if (typeof handler.onComplete === func) {
handler.onComplete(event, files, index, xhr, handler);
}
});
}
this inthe source of page:
/*<![CDATA[*/
jQuery(function($) {
jQuery("#images").MultiFile({'accept':'jpg|png|gif','max':10});
jQuery('#Images_form').fileUploadUI({'onComplete':function (event, files, index, xhr, handler, callBack) {
console.log("upload finish");
},'uploadTable':'#files','downloadTable':'#files','buildUploadRow':function (file, index) {
return $('<tr>'+
'<td class="filename">'+file[index].name+'</td>'+
'<td class="filesize">'+file[index].name+'</td>'+
'<td class="file_upload_progress"><div></div></td>'+
'<td class="file_upload_start" style="display:none">'+
'<button class="ui-state-default ui-corner-all" title="Start Upload">'+
'<span class="ui-icon ui-icon-circle-arrow-e">Start Upload</span>'+
'</button>'+
'</td>'+
'<td class="file_upload_cancel">'+
'<button class="ui-state-default ui-corner-all">'+
'<span class="ui-icon ui-icon-cancel">Cancel</span>'+
'</button>'+
'</td>'+
'</tr>');
},'buildDownloadRow':function (files, index) {
return $('<tr><td>' + files.name + '<\/td>' +
'<td class="file_upload_progress"><div><\/div><\/td>' +
'<td class="filesize">'+files.size+'</td>' +
'<td class="file_upload_cancel">' +
'<button class="ui-state-default ui-corner-all" title="Cancel">' +
'<span class="ui-icon ui-icon-cancel">Cancel<\/span>' +
'<\/button><\/td><\/tr>');
}});
});
/*]]>*/
</script>
the documentation says that the funcion only receives the following parameters:
event, files, index, xhr, handler
and you are trying to recevie an extra ‘callback’ parameter on the ‘onComplete’ event, also if you remove that event, does the plugin work correctly?
No, i delete this parameter. Set of parameters does not change the result
And my other question?
does the plugin work corretly when you remove the whole onComplete event callback?
Hi, I included this into a form I have but not sure how to incorporate basic functionality. I have been through all the docs and anything I could find on it. I just want to be able to upload files (and hopefully rename them) into a directory and store a path into my db. Is there some guidance somewhere on how to get me started with this?
Have you checked the included demos?