Kendo file upload - add file description - file-upload

We want to add a description for each file that is being uploaded.
The requirement is to have a text box against each filename to be uploaded, where the user can key in some description about the file.
Is there any way to add a description in the multiple file upload ?

As far as i know such feature not available in the Kendo File Upload control.
But you can upload all files and bind them to editable Kendo Grid with description TextBox and save it.

Related

Add Image to Hosted PDF

I need to host a PDF that contains an image field where multiple users can add an image to the field and then download the resulting file for themselves. How would I do this?

Always show the file extension inside the folder using vb.net

Currently, I am working on an application that will need to always show the file extensions of the files inside the folder.
Example:
I have a folder named Awards and the Contents are Images.
Contents:
As you can see, the file extension is hidden.
But when you click the options red boxed on the image. the file extension will be shown.
My question is, Is there a way to check the checkbox on the Image using vb.net? If it is possible? How??
Thank you and Regards,

Xamarin Forms UWP - Display PDF

Please, help me and tell me what am I missing.
My goal is to display simple PDF file (stored locally for example) in the WebView control. Can I bind path of the file to the Source property of the WebView? Or what is the correct way to show PDF in UWP?
P.S. and if the only option is to do like here - how must I add pdf.js to my project??
My goal is to display simple PDF file (stored locally for example) in the WebView control.
If you want to display pdf in WebView control, then the methods in Display a Local PDF File in a WebView is most like the only way to solve your problem.
You can follow the steps in the xamarin official document, and here are some additional tips we need to pay attention to:
After downloading pdfjs, for UWP app, you need to copy the entire folder into the Assets folder, make sure that the folder is named "pdfjs", otherwise you will need to modify the code to change the path.
Your .pdf file should be stored into the Content folder under the Assets folder, it means you will need to create a new folder named "Content" under Assets and copy your .pdf file into this folder. Otherwise, you will also need to modify the code to change the path.
After copying your .pdf file into the "Content" folder, don't forget to change the Build Action of this file to Content like this:
Or what is the correct way to show PDF in UWP?
In uwp app, you can use Image to show PDF file, you can refer to the official PDF document sample. But I don't know if PDF can be displayed as Image in Android and IOS apps, since you're developing a cross-platform project, I think it's better to use the built-in method to solve such problem.
If a demo for xamarin UWP is needed, you can leave a comment, I will upload my demo later.

open mht file in phone:WebBrowser

I have an application which displays help to user using webbrowser control. Now i'm able to display HTML correctly but If i try to display mht file (which contains images). It throws System.NullReferenceException. Both files are located at same location.
Lot of folks are deploying mht file to isolatedstorage and then reading it from there. Is there easy way todo this?

Extjs 4.1 file upload programmatically in some events

I want to upload a file using Extjs 4.1 file upload control. I have fileupload field in my form which will be hidden from users. but i have a image. if user double clicks to that image browse file dialog should be shown as in "Browse..." button of Fileupload control. Please help me...
Do you mean exactly like in the Sencha examples?
http://docs.sencha.com/ext-js/4-1/#!/example/form/file-upload.html
EDIT: Use buttonOnly:true config option to hide the fileinput field and leave only the upload button visible.