Topic: Make sure that another fields are setted before uploading.

Hello everyone.

I have a question about Plupload.

I need to ask at my client the folder where files will be uploaded by a input field. But I would like that the upload button stay inactive like when the client has not selected any file.

It's possible? Or have you another tips?

Thank you!

Re: Make sure that another fields are setted before uploading.

well i had to hide the Add files button until some data was previously entered using jquery
with   $("#uploader_browse").hide(); an show it with   $("#uploader_browse").show;
something like this


if(conditions){
$("#uploader_browse").show;
}else{
$("#uploader_browse").hide();
}


you should first know the selector or id that represents that button there is an icon arrow pointing a rectangle in firebug that lets you select any part of the page and inspect the code, select that button and youll know his id or class smile that easy if you ever used firebug...