Hi, I am using Infragistics Upload control in Asp.net MVC3 application, I found there is a link button called "Clear Uploaded", what it will do after I click it? What I can see if the uploaded file names disappeared, did it remove the files on the server?
Hi there,
This simply clears the UI. It would not remove the uploaded files.
Thank you for using the Infragistics forums!
Thank you.
I have one more question, I want to reuse the igUpload control, once uploaded files, I want to set this control to default status, that is only one "Upload" button, how can I do that?
Hi again,
In order to bring it back to its initial state I suggest that you destroy and reinit the widget.
If you need API reference, here is where it is located:http://help.infragistics.com/jQuery/2012.1/ui.igupload
That's I was implemented. I remove it and create it via javascript.
Could you please answer my last question?
I found that the igUpload will replace the file already existed if uploaded file has the same name. I added some code in Global.asax.cs to check if the file exists, if so, change the uploaded file name by adding some unique information like timestamp.
I want to get the changed file name at the client side, how can I do that?