Query |
Response | |
I am using Synchronous upload, but when I close upload popup window and click submit, in controllers ActionResult i have file argument as a null.
But if I click to submit without closing upload popup window everything is ok.
|
While close the upload popup window , We have remove and refresh the selected files. So, Argument throws a null value.
You want to hide the upload popup window means, you can set ShowFileDetails(false).
Find the code snippet:
| |
After closing popup window I want to show user his queque of upload files with an opportunity of delete (you have realized this in MVC classic demos) |
You can show the selected files using FileSelect event. You can get the selected files in an argument. Please find the below code snippet:
In general, Synchronous upload files can’t remove at particular. We have no option for remove the particular item in Synchronous upload files. You can only remove the whole files. |