You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably too late, but I met with this problem when I wanted to upload images.
Added a function to extraData field in configuration, what I read a text input with.
In server side (php) I read out extra data from request header and create a folder with same name (or could rename the file)
Text input: <input type="text" class="col-sm-12 col-md-12 col-lg-8 col-xl-8" placeholder="Write here the new name" id="uploadImgText"/>
Configuration: $('#drop-zone').dmUploader({ /*other configuration fields*/ extraData: function () { return {"extrafield": $('#uploadImgText').val()}; } });
Server side (php): <?php /*other php code*/ if (filter_input(INPUT_POST, "extrafield") != false) { $input = filter_input(INPUT_POST, "extrafield"); } /*do something with $input*/
Hello,
I'd like to change the name of my uploaded video before to send it.Is it something possible ?
Thank you.
The text was updated successfully, but these errors were encountered: