Alias to Uploader file name

Hi Webix team,

https://snippet.webix.com/m3o5k7fm

In this snippet I want the value of respective input box which I want to use as file alias name while storing the file.
What is the best way to do so?
Please suggest me.

Thanks,
Mira

if you want to send some more data along with the file then try to use formData
https://docs.webix.com/api__ui.uploader_formdata_config.html

@intregal ,

Thank you for your reply.

https://snippet.webix.com/efmiqhfh
But while uploading the file how I can send the input box value with file?

Please see the comment inside snippet -
formData:function(){
return {
title:“Title1”//title name for file from respective input box
};
},

I think this method will be more suitable for you
https://docs.webix.com/desktop__configuring_uploader.html#definingadditionaldatatosend
https://snippet.webix.com/135n497d
set uploader autosend:false

@intregal ,

But I don’t want autosend:false

then you need to change the scenario.
firstly you need to define alias in some textbox and then select and upload file.

ok.Thank you.:slight_smile: