I am trying to implement a FileUploader which allows for a Drop File in Area.
As I need to process the file as part of my form, it is set to UseForm
However, when I set it this way, I do not see the Drop File option and only the Select File button is shown.
WHY?
How can I have the Drop File Area working ?
@(Html.DevExtreme().FileUploader()
.Name("A_FileUpload")
.Multiple(false)
.LabelText(" or Drop File Here")
.SelectButtonText (" Select File ")
.UploadMode(FileUploadMode.UseButtons))
</text>)
Alternately, if I use UseButton … how can I grab pull the FileInfo in to the FORM for Form Submission to work … i.e. know which file was uploaded along with the form data ?