knt
knt

Reputation: 143

Cannot get file name Fineuploader

I cannot get the file name when listening for the onProgress event. The file id is available along with the file progress uploaded bytes and total bytes. Please help me to get the file name if available.

Upvotes: 0

Views: 1195

Answers (1)

Ray Nicholus
Ray Nicholus

Reputation: 19890

You can either ensure you are using Fine Uploader 5.0.4 or newer, where this issue was fixed, or you can use the getName API method:

uploader.getName(id);

Upvotes: 2

Related Questions