Hallo,

Ik ben bezig met FancyUpload maar nu wil ik dat ze titel en omschrijving kunnen invullen na de upload. Ik heb in upload.php al header('Location...'); toegepast maar dan werkt hij niet meer. Weet iemand hoe het wel moet? Ik ben al 2 dagen bezig maar het lukt me echt niet en kan niets vinden op Google over hetzelfde :( :(

FancyUpload is hier te vinden.
In FancyUpload2.js staat een functie: onAllComplete(). Kun je die niet aanpassen naar iets als:


	onAllComplete: function(current) {
		this.log('Completed all files, ' + current.bytesTotal + ' bytes.', arguments);
		this.updateOverall(current.bytesTotal);
		this.overallProgress.start(100);
		this.status.removeClass('file-uploading');
		window.location.href='bestand.php?var=value';
	},


Succes...

Reageren