Hi Kenneth,
I'm creating an MVC 3 web application so maybe there is a difference in firing events. I tried following:
function CuteWebUI_AjaxUploader_OnQueueUI(list) {
if ($("#uploaderTable").length <= 0) {
$('.AjaxUploaderQueueTable').wrap(function () {
return '<div id="uploaderTable" style="overflow:auto; height:170px; width:250px;" />';
});
}
}
When I write an simple alert('something') inside this event, I see it firing on load too (it fires also after selecting files).